LLC/src/view/Landing/index.jsx

24 lines
574 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";
const Landing = () => {
return (
<div className=" text-center text-6xl">
{" "}
<Navbar theme={1} />
<HeroSection />
<AboutUs />
<CounterDetail />
<Products />
<Footer />
</div>
);
};
export default Landing;