Files
kintcare-starter/src/Components/Home/HomeOne.jsx
T
DESKTOP-GBA0BK8\Admin 5a5cbe1623 first commit
2023-04-05 10:52:34 -04:00

40 lines
917 B
React

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;