first commit

This commit is contained in:
DESKTOP-GBA0BK8\Admin
2023-04-05 10:52:34 -04:00
commit 5a5cbe1623
394 changed files with 49443 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
import React, { useEffect } from "react";
import About from "../About";
import Banner from "../Banner";
import Blogs from "../Blogs";
import Brands from "../Brands";
import Courses from "../Courses";
import Feature from "../Feature";
import Footer from "../Footer";
import Header from "../Header";
import NewsLetter from "../NewsLetter";
import Platform from "../Platform";
import Team from "../Team";
import Testimonials from "../Testimonials";
import Topics from "../Topics";
const HomeOne = () => {
useEffect(() => {
document.documentElement.scrollTop = 0;
}, []);
return (
<>
<Header />
<Banner />
<About />
<Brands section_padding_bottom={"section-padding-bottom"} />
<Feature />
<Courses />
<Platform />
<NewsLetter />
<Topics />
<Testimonials />
<Team />
<Blogs />
<Footer />
</>
);
};
export default HomeOne;