diff --git a/src/app/page.tsx b/src/app/page.tsx index 93831b9..6cf891a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,14 +33,14 @@ export default function LandingPage() { button={{ text: "Shop Now", href: "products" }} - navItems={[ - { name: "Home", id: "hero" }, - { name: "Why Edgetabs", id: "about" }, - { name: "Features", id: "features" }, - { name: "Products", id: "products" }, - { name: "Testimonials", id: "testimonials" }, - { name: "FAQ", id: "faq" }, - { name: "Contact", id: "contact" } + links={[ + { label: "Home", href: "hero" }, + { label: "Why Edgetabs", href: "about" }, + { label: "Features", href: "features" }, + { label: "Products", href: "products" }, + { label: "Testimonials", href: "testimonials" }, + { label: "FAQ", href: "faq" }, + { label: "Contact", href: "contact" } ]} />