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 +} 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 +} 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 (