From b8449ef7eedaaf2b071a0fc34f937610f28cb314 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 03:09:39 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 53fcf69..55b3a4a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,8 +10,9 @@ import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTe import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import { Star } from "lucide-react"; export default function LandingPage() { return ( @@ -33,7 +34,7 @@ export default function LandingPage() { navItems={[ { name: "About", id: "about" }, { name: "Services", id: "services" }, - { name: "Portfolio", id: "portfolio" }, + { name: "Reviews", id: "reviews" }, { name: "Contact", id: "contact" }, ]} brandName="EliteDesign" @@ -97,23 +98,19 @@ export default function LandingPage() { /> -
- + + />
@@ -178,7 +175,7 @@ export default function LandingPage() { logoText="EliteDesign" columns={[ { title: "Company", items: [{ label: "About", href: "#about" }, { label: "Services", href: "#services" }] }, - { title: "Resources", items: [{ label: "Portfolio", href: "#portfolio" }, { label: "FAQ", href: "#faq" }] }, + { title: "Resources", items: [{ label: "Reviews", href: "#reviews" }, { label: "FAQ", href: "#faq" }] }, { title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] } ]} /> -- 2.49.1