diff --git a/src/app/home/page.tsx b/src/app/home/page.tsx new file mode 100644 index 0000000..f8ccaf5 --- /dev/null +++ b/src/app/home/page.tsx @@ -0,0 +1,271 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import { Box, Truck, Users } from "lucide-react"; + +export default function LandingPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 4980cd1..6640fef 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,414 +2,76 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; -import SplitAbout from '@/components/sections/about/SplitAbout'; -import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import { Box, Truck, Users } from "lucide-react"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import HeroOverlay from "@/components/sections/hero/HeroOverlay"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; export default function LandingPage() { return ( - + -
- -
+
+ +
-
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - +
);