Update src/app/blog/page.tsx

This commit is contained in:
2026-02-20 16:29:40 +00:00
parent 8f4a911fd1
commit 82894cb809

View File

@@ -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" }}
/>
</div>
@@ -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() {
</ReactLenis>
</ThemeProvider>
);
}
}