Update src/app/shop/[id]/page.tsx

This commit is contained in:
2026-02-23 11:40:33 +00:00
parent da32328f7c
commit e53c24494b

View File

@@ -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: "#" }] }