diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 8306d0a..2746dd2 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -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" };