Update src/app/blog/page.tsx

This commit is contained in:
2026-02-22 15:34:22 +00:00
parent 3ff19fc335
commit 0fb0f6cf36

View File

@@ -28,14 +28,14 @@ export default function BlogPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About Us", id: "about" },
{ name: "Products", id: "products" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
{ name: "About Us", id: "/#about" },
{ name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQ", id: "/#faq" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Смачна Пекарня"
button={{ text: "Order Now", href: "#contact" }}
button={{ text: "Order Now", href: "/#contact" }}
className="py-4 px-6"
/>
</div>
@@ -60,32 +60,31 @@ export default function BlogPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://img.b2bpic.net/free-photo/closeup-fresh-pita-bread-sale_181624-58514.jpg?_wi=4"
imageSrc="https://img.b2bpic.net/free-photo/closeup-fresh-pita-bread-sale_181624-58514.jpg"
imageAlt="Cozy bakery interior with warm lighting."
columns={[
{
title: "Меню", items: [
{ label: "Хліб", href: "#products" },
{ label: "Випічка", href: "#products" },
{ label: "Десерти", href: "#products" },
{ label: "Хліб", href: "/#products" },
{ label: "Випічка", href: "/#products" },
{ label: "Десерти", href: "/#products" },
],
},
{
title: "Про Нас", items: [
{ label: "Наша Історія", href: "#about" },
{ label: "Відгуки", href: "#testimonials" },
{ label: "Наша Історія", href: "/#about" },
{ label: "Відгуки", href: "/#testimonials" },
],
},
{
title: "Допомога", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Контакти", href: "#contact" },
{ label: "FAQ", href: "/#faq" },
{ label: "Контакти", href: "/#contact" },
],
},
]}
logoText="Смачна Пекарня"
copyrightText="© 2024 Смачна Пекарня. Всі права захищені."
useInvertedBackground={false}
ariaLabel="Bakery website footer"
logoTextClassName="text-2xl md:text-3xl font-bold"
copyrightTextClassName="text-foreground/70"