Update src/app/shop/[id]/page.tsx
This commit is contained in:
@@ -82,9 +82,12 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
|
||||
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"
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user