Update src/app/shop/page.tsx

This commit is contained in:
2026-02-22 13:46:35 +00:00
parent 803650b095
commit 251b34e331

View File

@@ -49,9 +49,12 @@ function ShopPageContent() {
const footerProps = {
columns: [
{ items: [{ label: "Home", href: "#hero" }, { label: "Menu", href: "#products" }, { label: "About Us", href: "#about" }] },
{ items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }, { label: "Privacy Policy", href: "/privacy" }] },
{ items: [{ label: "Follow Us", href: "https://facebook.com/smachnavypichka" }, { label: "Instagram", href: "https://instagram.com/smachnavypichka" }] }
{ items: [{ label: "Home", href: "/#hero" }, { label: "Menu", href: "/#products" }, { label: "About Us", href: "/#about" }] },
{ items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }, { label: "Privacy Policy", href: "/privacy" }] },
{ items: [
{ label: "Follow Us", href: "https://facebook.com/smachnavypichka", onClick: () => window.open('https://facebook.com/smachnavypichka', '_blank') },
{ label: "Instagram", href: "https://instagram.com/smachnavypichka", onClick: () => window.open('https://instagram.com/smachnavypichka', '_blank') }
]}
],
logoText: "Смачна Випічка", className: "bg-card text-foreground/90 py-8 lg:py-12 text-center"
};