Update src/app/blog/page.tsx

This commit is contained in:
2026-02-23 14:42:53 +00:00
parent caa31dc0d0
commit aaa871b723

View File

@@ -30,7 +30,7 @@ export default function BlogPage() {
{ name: "About", id: "/#about" },
{ name: "Menu", id: "/#menu" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Pia"
bottomLeftText="Experience the perfect brew."
@@ -58,21 +58,21 @@ export default function BlogPage() {
title: "Explore", items: [
{ label: "Home", href: "/" },
{ label: "Menu", href: "/#menu" },
{ label: "About Us", href: "/#about" },
],
{ label: "About Us", href: "/#about" }
]
},
{
title: "Connect", items: [
{ label: "Contact", href: "/#contact" },
{ label: "Instagram", href: "https://www.instagram.com/pia.coffeeshop" },
],
{ label: "Instagram", href: "https://www.instagram.com/pia.coffeeshop" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "/privacy" },
{ label: "Terms of Service", href: "/terms" },
],
},
{ label: "Terms of Service", href: "/terms" }
]
}
]}
bottomLeftText="© 2024 Pia Coffeeshop. All rights reserved."
bottomRightText="Crafted with care by Pia"
@@ -80,4 +80,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}