Update src/app/blog/page.tsx

This commit is contained in:
2026-02-23 11:05:44 +00:00
parent 934578138e
commit 6bd53ee398

View File

@@ -29,12 +29,12 @@ export default function BlogPage() {
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Collections", id: "collections" }, { name: "Collections", id: "/#collections" },
{ name: "About", id: "about" }, { name: "About", id: "/#about" },
{ name: "Testimonials", id: "testimonials" }, { name: "Testimonials", id: "/#testimonials" },
{ name: "FAQ", id: "faq" }, { name: "FAQ", id: "/#faq" },
]} ]}
button={{ text: "Contact Us", href: "contact" }} button={{ text: "Contact Us", href: "/#contact" }}
brandName="Klar" brandName="Klar"
/> />
</div> </div>
@@ -62,22 +62,22 @@ export default function BlogPage() {
columns={[ columns={[
{ {
title: "Studio", items: [ title: "Studio", items: [
{ label: "About Us", href: "about" }, { label: "About Us", href: "/#about" },
{ label: "Our Team", href: "team" }, { label: "Our Team", href: "/#team" },
{ label: "Careers", href: "#" }, { label: "Careers", href: "#" },
], ],
}, },
{ {
title: "Collections", items: [ title: "Collections", items: [
{ label: "Bouquets", href: "collections" }, { label: "Bouquets", href: "/#collections" },
{ label: "Weddings", href: "#" }, { label: "Weddings", href: "#" },
{ label: "Events", href: "#" }, { label: "Events", href: "#" },
], ],
}, },
{ {
title: "Support", items: [ title: "Support", items: [
{ label: "FAQ", href: "faq" }, { label: "FAQ", href: "/#faq" },
{ label: "Contact", href: "contact" }, { label: "Contact", href: "/#contact" },
{ label: "Privacy Policy", href: "#" }, { label: "Privacy Policy", href: "#" },
], ],
}, },