From b32bc59ac81ae9453c2a2b1318e642d97aa12ab3 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 16:37:53 +0000 Subject: [PATCH] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 2516fe8..65d0eea 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -205,25 +205,25 @@ export default function ProductPage({ params }: ProductPageProps) { columns={[ { title: "Services", items: [ - { label: "Tree Removal", href: "tree-removal" }, - { label: "Tree Trimming", href: "tree-trimming" }, - { label: "Emergency Service", href: "emergency-service" }, - { label: "Storm Cleanup", href: "tree-removal" } + { label: "Tree Removal", href: "/services" }, + { label: "Tree Trimming", href: "/services" }, + { label: "Emergency Service", href: "/services" }, + { label: "Storm Cleanup", href: "/services" } ] }, { title: "Company", items: [ - { label: "About Us", href: "about" }, - { label: "Reviews", href: "reviews" }, - { label: "Service Area", href: "services" }, - { label: "Contact", href: "contact" } + { label: "About Us", href: "/about" }, + { label: "Reviews", href: "/reviews" }, + { label: "Service Area", href: "/services" }, + { label: "Contact", href: "/contact" } ] }, { title: "Contact", items: [ { label: "📞 (802) 473-2606", href: "tel:(802)4732606" }, { label: "1774 Baptist St, Williamstown, VT 05679", href: "https://maps.google.com/?q=1774+Baptist+St+Williamstown+VT+05679" }, - { label: "Available 24/7", href: "contact" } + { label: "Available 24/7", href: "/contact" } ] } ]}