Added frontend folder structure.
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
import React from "react";
|
||||
import Navbar from "../../components/Navbar";
|
||||
import Hero from "./Hero";
|
||||
import Testimonial from "./Testimonial";
|
||||
import About from "./About";
|
||||
import Customization from "./Customization";
|
||||
import SubjectSection from "./SubjectSection";
|
||||
import ReviewSection from "./ReviewSection";
|
||||
import Footer from "./Footer";
|
||||
|
||||
const HomePage = () => {
|
||||
return (
|
||||
<>
|
||||
<Hero />
|
||||
<Testimonial />
|
||||
<About />
|
||||
<Customization />
|
||||
<SubjectSection />
|
||||
<ReviewSection />
|
||||
<Footer />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default HomePage;
|
||||
Reference in New Issue
Block a user