2025-02-19 15:04:53 +03:30
|
|
|
import Navbar from "src/components/NavBar";
|
2025-02-16 09:06:54 +03:30
|
|
|
import AboutUs from "./components/AboutUs";
|
|
|
|
|
import Footer from "./components/Footer";
|
2025-02-19 15:04:53 +03:30
|
|
|
import Products from "./components/Products";
|
|
|
|
|
import Sides from "./components/Sides";
|
2025-02-16 09:06:54 +03:30
|
|
|
|
|
|
|
|
const Landing = () => {
|
|
|
|
|
return (
|
|
|
|
|
<div className=" text-center text-6xl">
|
|
|
|
|
{" "}
|
|
|
|
|
<Navbar theme={1} />
|
2025-02-17 04:52:48 +03:30
|
|
|
{/* <HeroSection /> */}
|
2025-02-16 09:06:54 +03:30
|
|
|
<AboutUs />
|
2025-02-19 15:04:53 +03:30
|
|
|
<Sides/>
|
|
|
|
|
{/* <CounterDetail /> */}
|
2025-02-16 09:06:54 +03:30
|
|
|
<Products />
|
2025-02-19 15:04:53 +03:30
|
|
|
{/* <WhyHorizon/> */}
|
2025-02-16 09:06:54 +03:30
|
|
|
<Footer />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default Landing;
|