Update src/app/blog/page.tsx

This commit is contained in:
2026-02-22 13:46:32 +00:00
parent 9d1670e109
commit c1debdef7c

View File

@@ -28,14 +28,14 @@ export default function BlogPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About Us", id: "about" },
{ name: "Menu", id: "products" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
{ name: "About Us", id: "/#about" },
{ name: "Menu", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQ", id: "/#faq" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Смачна Випічка"
button={{ text: "Order Now", href: "#products" }}
button={{ text: "Order Now", href: "/#products" }}
className="py-2 lg:py-4"
buttonClassName="px-4 py-2 lg:px-6 lg:py-3 text-sm lg:text-base font-semibold"
/>
@@ -62,8 +62,8 @@ export default function BlogPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
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: "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') }