35 lines
896 B
JavaScript
35 lines
896 B
JavaScript
import React from "react";
|
|
import Hero from "../components/Hero";
|
|
import { Box } from "@chakra-ui/react";
|
|
import TimeLines from "../components/ui/TimeLines";
|
|
import ServicesSection from "../components/ServiceSection";
|
|
import Protfolio from "../components/PortFolio"
|
|
import Teach from "../components/WhatWeTeach"
|
|
import Awards from "../components/Awards";
|
|
import Testi from "../components/Testinomals"
|
|
import Banner from "../components/Banner"
|
|
import Form from "../components/Form"
|
|
import FAQs from "../components/FAQs"
|
|
import Footer from "../components/Footer"
|
|
import FooterCom from "../components/FooterCom";
|
|
const Home = () => {
|
|
return (
|
|
<div>
|
|
<Hero />
|
|
<TimeLines/>
|
|
<ServicesSection/>
|
|
<Protfolio/>
|
|
<Teach/>
|
|
<Testi/>
|
|
<Awards/>
|
|
<Banner/>
|
|
<Form/>
|
|
<FAQs/>
|
|
<Footer/>
|
|
<FooterCom/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Home;
|