Update src/app/shop/page.tsx

This commit is contained in:
2026-02-22 22:26:56 +00:00
parent 0b10afcec5
commit ee8e6b4beb

View File

@@ -50,13 +50,13 @@ function ShopPageContent() {
</main>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://img.b2bpic.net/free-photo/ripe-big-pumpkin-burlap_114579-29487.jpg?_wi=3"
imageSrc="https://img.b2bpic.net/free-photo/ripe-big-pumpkin-burlap_114579-29487.jpg"
imageAlt="Rustic fabric or dough texture as footer background."
logoText="Смачна Випічка"
columns={[
{ title: "Menu", items: [{ label: "Breads", href: "#products" }, { label: "Pastries", href: "#products" }, { label: "Custom Cakes", href: "#contact" }] },
{ title: "About Us", items: [{ label: "Our Story", href: "#about" }, { label: "Reviews", href: "#testimonials" }] },
{ title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] }
{ title: "Menu", items: [{ label: "Breads", href: "/#products" }, { label: "Pastries", href: "/#products" }, { label: "Custom Cakes", href: "/#contact" }] },
{ title: "About Us", items: [{ label: "Our Story", href: "/#about" }, { label: "Reviews", href: "/#testimonials" }] },
{ title: "Support", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] }
]}
copyrightText="© 2024 Смачна Випічка. All rights reserved."
mediaClassName="opacity-60"
@@ -113,13 +113,13 @@ function ShopPageContent() {
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://img.b2bpic.net/free-photo/ripe-big-pumpkin-burlap_114579-29487.jpg?_wi=4"
imageSrc="https://img.b2bpic.net/free-photo/ripe-big-pumpkin-burlap_114579-29487.jpg"
imageAlt="Rustic fabric or dough texture as footer background."
logoText="Смачна Випічка"
columns={[
{ title: "Menu", items: [{ label: "Breads", href: "#products" }, { label: "Pastries", href: "#products" }, { label: "Custom Cakes", href: "#contact" }] },
{ title: "About Us", items: [{ label: "Our Story", href: "#about" }, { label: "Reviews", href: "#testimonials" }] },
{ title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] }
{ title: "Menu", items: [{ label: "Breads", href: "/#products" }, { label: "Pastries", href: "/#products" }, { label: "Custom Cakes", href: "/#contact" }] },
{ title: "About Us", items: [{ label: "Our Story", href: "/#about" }, { label: "Reviews", href: "/#testimonials" }] },
{ title: "Support", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] }
]}
copyrightText="© 2024 Смачна Випічка. All rights reserved."
mediaClassName="opacity-60"
@@ -142,4 +142,4 @@ export default function ShopPage() {
<ShopPageContent />
</Suspense>
);
}
}