diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 58dabd7..01e0393 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -70,10 +70,10 @@ export default function BlogPage() { columns={[ { title: "Navigate", items: [ - { label: "Properties", id: "properties" }, - { label: "About Us", id: "about" }, - { label: "Services", id: "services" }, - { label: "Contact", id: "contact" } + { label: "Properties", href: "#properties" }, + { label: "About Us", href: "#about" }, + { label: "Services", href: "#services" }, + { label: "Contact", href: "#contact" } ] }, { diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 12df6ff..aa93578 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -101,7 +101,7 @@ export default function ProductPage({ params }: ProductPageProps) {