LLC/src/view/Landing/index.jsx

26 lines
645 B
React
Raw Normal View History

2025-02-16 09:06:54 +03:30
import React from "react";
import HeroSection from "./components/HeroSection";
import AboutUs from "./components/AboutUs";
import CounterDetail from "./components/CounterDetail";
import Products from "./components/Products";
import Footer from "./components/Footer";
import Navbar from "src/components/NavBar";
2025-02-17 04:52:48 +03:30
import WhyHorizon from "./components/Why";
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 />
<CounterDetail />
<Products />
2025-02-17 04:52:48 +03:30
<WhyHorizon/>
2025-02-16 09:06:54 +03:30
<Footer />
</div>
);
};
export default Landing;