Update src/app/page.tsx

This commit is contained in:
2026-02-20 13:17:51 +00:00
parent 6743f20e66
commit 3dbef719d5

View File

@@ -29,8 +29,8 @@ export default function LandingPage() {
<NavbarStyleApple
brandName="Persik"
navItems={[
{ name: "Home", id: "#hero" },
{ name: "Shop", id: "#products" },
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "#about" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "FAQ", id: "#faq" },
@@ -138,7 +138,7 @@ export default function LandingPage() {
logoText="Persik Flowers"
copyrightText="© 2024 Persik | All rights reserved"
columns={[
{ title: "Shop", items: [{ label: "Bouquets", href: "#products" }, { label: "Arrangements", href: "#products" }, { label: "Gifts", href: "#products" }] },
{ 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" }, { label: "FAQ", href: "#faq" }] },
{ title: "Support", items: [{ label: "Contact", href: "#contact" }, { label: "Delivery Info", href: "https://example.com/delivery" }, { label: "Privacy Policy", href: "https://example.com/privacy" }] },
]}