diff --git a/src/app/page.tsx b/src/app/page.tsx index e41e42d..df99b71 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,7 +29,7 @@ export default function LandingPage() { brandName="Persik" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" }, + { name: "Products", id: "#products" }, { name: "About", id: "#about" }, { name: "Testimonials", id: "#testimonials" }, { name: "Contact", id: "#contact" }, @@ -121,8 +121,8 @@ export default function LandingPage() { copyrightText="© 2024 Persik | All rights reserved" columns={[ { title: "Shop", items: [{ label: "Bouquets", href: "/shop" }, { label: "Arrangements", href: "/shop" }, { label: "Gifts", href: "/shop" }] }, - { title: "About Us", items: [{ label: "Our Story", href: "#about" }, { label: "Testimonials", href: "#testimonials" }] }, - { title: "Support", items: [{ label: "Contact", href: "#contact" }, { label: "Delivery Info", href: "https://example.com/delivery" }, { label: "Privacy Policy", href: "https://example.com/privacy" }] }, + { title: "About Us", items: [{ label: "Our Story", href: "/#about" }, { label: "Testimonials", href: "/#testimonials" }] }, + { title: "Support", items: [{ label: "Contact", href: "/#contact" }, { label: "Delivery Info", href: "https://example.com/delivery" }, { label: "Privacy Policy", href: "https://example.com/privacy" }] }, ]} />