Update src/app/about/page.tsx

This commit is contained in:
2026-02-20 16:29:39 +00:00
parent cf81ebade9
commit 8f4a911fd1

View File

@@ -108,8 +108,7 @@ export default function AboutPage() {
logoText="Trucking & Construction Texas"
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "/about" },
{ label: "Services", href: "/services" },
@@ -117,8 +116,7 @@ export default function AboutPage() {
]
},
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Heavy Hauling", href: "/services" },
{ label: "Freight Transport", href: "/services" },
{ label: "Equipment Transport", href: "/services" },
@@ -126,8 +124,7 @@ export default function AboutPage() {
]
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Contact Us", href: "/contact" },
{ label: "Request Quote", href: "/contact" },
{ label: "FAQ", href: "#" },
@@ -135,8 +132,7 @@ export default function AboutPage() {
]
},
{
title: "Connect",
items: [
title: "Connect", items: [
{ label: "Facebook", href: "https://facebook.com" },
{ label: "LinkedIn", href: "https://linkedin.com" },
{ label: "Instagram", href: "https://instagram.com" },
@@ -149,4 +145,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}