From aac1a0021859cced4e8ec312ebeb51f0f2f9aaaa Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 30 Apr 2026 14:23:39 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 123 ++++++++++++++++++++++++++++++++++++----------- 1 file changed, 94 insertions(+), 29 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1a5af9e..0ec6d79 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,57 +1,122 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; -import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; -import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; -import MediaAbout from '@/components/sections/about/MediaAbout'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import Link from "next/link"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll"; +import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; +import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; +import ProductCardFour from "@/components/sections/product/ProductCardFour"; +import MediaAbout from "@/components/sections/about/MediaAbout"; +import FaqBase from "@/components/sections/faq/FaqBase"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; const navItems = [{ name: "Home", id: "/" }]; export default function Page() { return ( - +
- +
- +
- +
- +
- +
- +
- +
); -- 2.49.1