24 lines
538 B
JavaScript
24 lines
538 B
JavaScript
import Navbar from "src/components/NavBar";
|
|
import AboutUs from "./components/AboutUs";
|
|
import Footer from "./components/Footer";
|
|
import Products from "./components/Products";
|
|
import Sides from "./components/Sides";
|
|
|
|
const Landing = () => {
|
|
return (
|
|
<div className=" text-center text-6xl">
|
|
{" "}
|
|
<Navbar theme={1} />
|
|
{/* <HeroSection /> */}
|
|
<AboutUs />
|
|
<Sides/>
|
|
{/* <CounterDetail /> */}
|
|
<Products />
|
|
{/* <WhyHorizon/> */}
|
|
<Footer />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Landing;
|