Update src/app/blog/page.tsx

This commit is contained in:
2026-02-23 14:35:27 +00:00
parent 632d747d66
commit ef2df3d051

View File

@@ -27,10 +27,10 @@ export default function BlogPage() {
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "#about" },
{ name: "Menu", id: "#menu" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "Contact", id: "#contact" },
{ name: "About", id: "/#about" },
{ name: "Menu", id: "/#menu" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Pia"
bottomLeftText="Experience the perfect brew."
@@ -56,14 +56,14 @@ export default function BlogPage() {
columns={[
{
title: "Explore", items: [
{ label: "Home", href: "#home" },
{ label: "Menu", href: "#menu" },
{ label: "About Us", href: "#about" },
{ label: "Home", href: "/" },
{ label: "Menu", href: "/#menu" },
{ label: "About Us", href: "/#about" },
],
},
{
title: "Connect", items: [
{ label: "Contact", href: "#contact" },
{ label: "Contact", href: "/#contact" },
{ label: "Instagram", href: "https://www.instagram.com/pia.coffeeshop" },
],
},