From 0ab6ea37f411f81fa0d9d1f5056ed16b1782ce1b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 23:17:24 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a4afce6..f54c30a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,8 @@ import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboa import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; -import { Sparkles } from '@/components/background/Sparkles'; +import AboutMetric from '@/components/sections/about/AboutMetric'; +import { Sparkles, BarChart3, Users, Target, Zap } from 'lucide-react'; export default function LandingPage() { return ( @@ -31,6 +32,8 @@ export default function LandingPage() { navItems={[ { name: "Surface", id: "hero"}, + { + name: "About", id: "about"}, { name: "Midwater", id: "features"}, { @@ -50,7 +53,7 @@ export default function LandingPage() { description="Experience the mesmerizing transition from the sunlit surface to the mysterious ocean deep. A calm, futuristic exploration awaits." buttons={[ { - text: "Begin Descent", href: "#features"}, + text: "Begin Descent", href: "#about"}, ]} carouselItems={[ { @@ -70,6 +73,19 @@ export default function LandingPage() { +
+ +
+
); -} +} \ No newline at end of file -- 2.49.1