From 30be70fe557a01a5a6592f54f211f9bfe273670c Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 16:56:57 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 221 +++++++++++++++++------------------------------ 1 file changed, 81 insertions(+), 140 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3b4ed85..6abc926 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,151 +1,92 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; -import FooterCard from '@/components/sections/footer/FooterCard'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; -import { Coffee, Sparkles } from "lucide-react"; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Coffee, Sparkles } from 'lucide-react'; -export default function LandingPage() { +const navItems = [{ name: "Home", id: "/" }]; + +export default function Page() { return ( - - - - -
- -
- -
- -
- -
- -
- - - -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+ +
+ +
+
); } \ No newline at end of file -- 2.49.1