diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 46ed654..a3b18d9 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -76,9 +76,9 @@ function ProductPageContent({ params }: ProductPageProps) { const navItems = [ { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "Products", id: "/shop" }, - { name: "Contact", id: "/contact" } + { name: "About", id: "/#about" }, + { name: "Shop", id: "/shop" }, + { name: "Blog", id: "/blog" }, ]; const navbarProps = { @@ -87,7 +87,7 @@ function ProductPageContent({ params }: ProductPageProps) { }; const footerProps = { - imageSrc: "https://img.b2bpic.net/free-photo/beautiful-shot-sheep-grazing-green-fields-sunset_181624-11278.jpg?_wi=4", imageAlt: "Scenic dairy farm landscape", columns: [ + imageSrc: "https://img.b2bpic.net/free-photo/beautiful-shot-sheep-grazing-green-fields-sunset_181624-11278.jpg", imageAlt: "Scenic dairy farm landscape", columns: [ { title: "Shop", items: [{ label: "Milk", href: "products" }, { label: "Cheese", href: "products" }, { label: "Specials", href: "products" }] }, { title: "About Us", items: [{ label: "Our Story", href: "about" }, { label: "Sustainability", href: "about" }, { label: "Team", href: "#" }] }, { title: "Support", items: [{ label: "FAQ", href: "faq" }, { label: "Contact", href: "contact" }, { label: "Privacy Policy", href: "#" }] }