diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 83dc719..22547b9 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -29,12 +29,12 @@ export default function BlogPage() { brandName="Trucking & Construction Texas" navItems={[ { name: "Home", id: "/" }, - { name: "Services", id: "services" }, - { name: "About", id: "about" }, - { name: "Reviews", id: "reviews" }, - { name: "Contact", id: "contact" } + { name: "Services", id: "/services" }, + { name: "About", id: "/about" }, + { name: "Reviews", id: "/reviews" }, + { name: "Contact", id: "/contact" } ]} - button={{ text: "Request Quote", href: "contact" }} + button={{ text: "Request Quote", href: "/contact" }} /> @@ -71,10 +71,10 @@ export default function BlogPage() { }, { title: "Services", items: [ - { label: "Heavy Hauling", href: "/services#heavy-hauling" }, - { label: "Freight Transport", href: "/services#freight" }, - { label: "Equipment Transport", href: "/services#equipment" }, - { label: "Construction Services", href: "/services#construction" } + { label: "Heavy Hauling", href: "/services" }, + { label: "Freight Transport", href: "/services" }, + { label: "Equipment Transport", href: "/services" }, + { label: "Construction Services", href: "/services" } ] }, { @@ -100,4 +100,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +}