From 5ca30b43cb10e507d514c966847534626cd0a497 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 8 Jun 2026 12:46:36 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 331 +++++++++++------------------------------------ 1 file changed, 75 insertions(+), 256 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c297f3a..9afeb4b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,6 +12,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import { Brush, Code, Palette, Search } from 'lucide-react'; export default function LandingPage() { return ( @@ -32,37 +33,21 @@ export default function LandingPage() { @@ -72,64 +57,34 @@ export default function LandingPage() { @@ -448,45 +283,29 @@ export default function LandingPage() { { items: [ { - label: "Home", - href: "#hero", - }, + label: "Home", href: "#hero"}, { - label: "About", - href: "#about", - }, + label: "About", href: "#about"}, { - label: "Skills", - href: "#features", - }, + label: "Skills", href: "#features"}, ], }, { items: [ { - label: "Testimonials", - href: "#testimonials", - }, + label: "Testimonials", href: "#testimonials"}, { - label: "FAQ", - href: "#faq", - }, + label: "FAQ", href: "#faq"}, { - label: "Contact", - href: "#contact", - }, + label: "Contact", href: "#contact"}, ], }, { items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ], }, ]} -- 2.49.1