From aea72d60ce8ea27367b10a43cbd9722906eff959 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 29 Apr 2026 00:41:50 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 196 +++++++++++++++++------------------------------ 1 file changed, 72 insertions(+), 124 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 205d35b..e495a2c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,156 +1,104 @@ -"use client"; +'use client'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; +import MediaAbout from '@/components/sections/about/MediaAbout'; +import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; +import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; -import MediaAbout from "@/components/sections/about/MediaAbout"; -import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; -import ProductCardFour from "@/components/sections/product/ProductCardFour"; -import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; -import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; -import ContactText from "@/components/sections/contact/ContactText"; -import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; - -export default function LandingPage() { +export default function Page() { + const navItems = [{ name: 'Home', id: '/' }]; return ( - + -
-
-
-
-
- -
- - - -
- -
- -
- + +
+
+ +
+
+
-
-
-
); -} +} \ No newline at end of file -- 2.49.1