Update src/app/blog/page.tsx

This commit is contained in:
2026-01-29 15:14:34 +00:00
parent b2fed322fc
commit 0d8ab287b5

View File

@@ -104,7 +104,7 @@ export default function BlogPage() {
{ name: "Shop", id: "/shop" }, { name: "Shop", id: "/shop" },
{ name: "About", id: "#about" }, { name: "About", id: "#about" },
{ name: "Testimonials", id: "#testimonials" }, { name: "Testimonials", id: "#testimonials" },
{ name: "Contact", id: "#contact" } { name: "Contact", id: "/contact" }
]} ]}
brandName="Kvitok" brandName="Kvitok"
bottomLeftText="Fresh Flowers Daily" bottomLeftText="Fresh Flowers Daily"
@@ -136,13 +136,13 @@ export default function BlogPage() {
title: "Shop", items: [ title: "Shop", items: [
{ label: "All Arrangements", href: "/shop" }, { label: "All Arrangements", href: "/shop" },
{ label: "Collections", href: "/#feature" }, { label: "Collections", href: "/#feature" },
{ label: "Custom Orders", href: "/#contact" } { label: "Custom Orders", href: "/contact" }
] ]
}, },
{ {
title: "Company", items: [ title: "Company", items: [
{ label: "About Us", href: "/#about" }, { label: "About Us", href: "/#about" },
{ label: "Contact Us", href: "/#contact" }, { label: "Contact Us", href: "/contact" },
{ label: "Testimonials", href: "/#testimonials" } { label: "Testimonials", href: "/#testimonials" }
] ]
}, },