From ee715fd791aba427d4fae0f3743d19c60fb1ebf9 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 8 May 2026 16:15:27 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 432 +++++------------------------------------------ 1 file changed, 44 insertions(+), 388 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0b3987a..4dcd50e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,396 +1,52 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import BlogCardTwo from '@/components/sections/blog/BlogCardTwo'; -import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; -import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import SplitAbout from '@/components/sections/about/SplitAbout'; -import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; +import SplitAbout from "@/components/sections/about/SplitAbout"; +import FeatureCardTwentyEight from "@/components/sections/feature/FeatureCardTwentyEight"; +import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; +import BlogCardTwo from "@/components/sections/blog/BlogCardTwo"; +import ProductCardThree from "@/components/sections/product/ProductCardThree"; +import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; import { Calendar, Clock, Heart } from "lucide-react"; +import Link from "next/link"; + +export default function Home() { + const navItems = [ + { name: "Home", id: "/" } + ]; -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
-
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
); -} +} \ No newline at end of file