From 2d889799c4913ce1fd47431ddd76ba6cf6a18e8b Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 7 May 2026 12:50:16 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 457 +++++++++++++---------------------------------- 1 file changed, 122 insertions(+), 335 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b895f88..3027640 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,342 +1,129 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; -import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; -import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; -import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; -import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial"; +import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; +import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve"; +import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; +import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; +import ContactText from "@/components/sections/contact/ContactText"; +import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import { BlurReveal } from "lucide-react"; -export default function LandingPage() { +const navItems = [{ name: "Home", id: "/" }]; + +export default function Page() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); -} +} \ No newline at end of file