From f30786a9577528995a25d990ddd9e524ee4caf22 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 06:49:16 +0000 Subject: [PATCH 1/6] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 48 +++++++++++++++++-------------------------- 1 file changed, 19 insertions(+), 29 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index effd78b..ed2307d 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -10,6 +10,22 @@ import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); + const unifiedNavItems = [ + { name: 'Home', id: '/' }, + { name: 'Products', id: '/products' }, + { name: 'Shop', id: '/shop' }, + { name: 'Blog', id: '/blog' }, + { name: 'About', id: '/#about' }, + { name: 'Testimonials', id: '/#testimonials' }, + { name: 'Contact', id: '/#contact' } + ]; + + const unifiedFooterColumns = [ + { title: 'Explore', items: [{ label: 'Home', href: '/' }, { label: 'Products', href: '/products' }, { label: 'About Us', href: '/#about' }] }, + { title: 'Connect', items: [{ label: 'Contact', href: '/#contact' }, { label: 'Instagram', href: 'https://www.instagram.com/pia.coffeeshop' }] }, + { title: 'Legal', items: [{ label: 'Privacy Policy', href: '/privacy' }, { label: 'Terms of Service', href: '/terms' }] } + ]; + return ( ); -} \ No newline at end of file +} -- 2.49.1 From 8ae54536319a97d401021eb8758e2ad9b929cd8d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 06:49:17 +0000 Subject: [PATCH 2/6] Update src/app/layout.tsx --- src/app/layout.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 245b1dd..ae5e886 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -12,7 +12,8 @@ export const metadata: Metadata = { title: "Pia Coffeeshop | Your Daily Brew of Happiness", description: "Experience the warmth and community of Pia Coffeeshop. Enjoy artisanal coffee, freshly baked pastries, and a cozy atmosphere perfect for any moment.", openGraph: { title: "Pia Coffeeshop", description: "Experience the warmth and community of Pia Coffeeshop. Enjoy artisanal coffee, freshly baked pastries, and a cozy atmosphere perfect for any moment.", url: "https://www.piacoffee.com", siteName: "Pia Coffeeshop", images: [ { - url: "https://img.b2bpic.net/free-photo/portrait-smiling-waitress-using-coffee-machine_107420-12297.jpg", alt: "Cozy coffeeshop interior" } + url: "https://img.b2bpic.net/free-photo/portrait-smiling-waitress-using-coffee-machine_107420-12297.jpg", alt: "Cozy coffeeshop interior" + } ] }, twitter: { @@ -1404,4 +1405,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From 5f2052886ab91a31d4054f8f2316bebee304a494 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 06:49:18 +0000 Subject: [PATCH 3/6] Update src/app/page.tsx --- src/app/page.tsx | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3b847b6..47b3a47 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,6 +12,22 @@ import FooterSimple from '@/components/sections/footer/FooterSimple'; import { Coffee, Home } from "lucide-react"; export default function SitePage() { + const unifiedNavItems = [ + { name: 'Home', id: '/' }, + { name: 'Products', id: '/products' }, + { name: 'Shop', id: '/shop' }, + { name: 'Blog', id: '/blog' }, + { name: 'About', id: '/#about' }, + { name: 'Testimonials', id: '/#testimonials' }, + { name: 'Contact', id: '/#contact' } + ]; + + const unifiedFooterColumns = [ + { title: 'Explore', items: [{ label: 'Home', href: '/' }, { label: 'Products', href: '/products' }, { label: 'About Us', href: '/#about' }] }, + { title: 'Connect', items: [{ label: 'Contact', href: '/#contact' }, { label: 'Instagram', href: 'https://www.instagram.com/pia.coffeeshop' }] }, + { title: 'Legal', items: [{ label: 'Privacy Policy', href: '/privacy' }, { label: 'Terms of Service', href: '/terms' }] } + ]; + return (