Add src/app/marshall-construction/page.tsx

This commit is contained in:
2026-06-07 23:08:30 +00:00
parent fc11c8e395
commit 19688d8e2d

View File

@@ -0,0 +1,60 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import HeroPersonalLinks from "@/components/sections/hero/HeroPersonalLinks";
import { Phone, MapPin, Wrench, Home, Building, Sparkles } from "lucide-react";
export default function MarshallConstructionPage() {
const titleSegments = [
{ type: "text" as const, content: "Residential Remodeler & General Contractor" },
{ type: "text" as const, content: "Turning tired interiors into new spaces." },
{ type: "text" as const, content: "4.9 (83 reviews)" }
];
const socialLinks = [
{ icon: Phone, label: "(817) 476-1097", href: "tel:+18174761097" },
{ icon: MapPin, label: "3105 Bonnie Dr, Fort Worth, TX 76116", href: "https://www.google.com/maps/search/?api=1&query=3105+Bonnie+Dr,+Fort+Worth,+TX+76116" }
];
const linkCards = [
{
icon: Wrench,
title: "Bathroom Remodeling", description: "Transforming your bath into a modern oasis.", button: { text: "Learn More", href: "#bathroom-remodel" }
},
{
icon: Home,
title: "Kitchen Remodeling", description: "Crafting functional and beautiful kitchen spaces.", button: { text: "Learn More", href: "#kitchen-remodel" }
},
{
icon: Building,
title: "Commercial Fit Out", description: "Expert fit-out services for your business.", button: { text: "Learn More", href: "#commercial-fitout" }
},
{
icon: Sparkles,
title: "All Our Services", description: "Including Custom Cabinets, Water Damage & more.", button: { text: "View All", href: "#services" }
}
];
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="none"
cardStyle="gradient-bordered"
primaryButtonStyle="flat"
secondaryButtonStyle="solid"
headingFontWeight="medium"
>
<HeroPersonalLinks
background={{ variant: "downward-rays-animated-grid" }}
title="Marshall Construction Company"
titleSegments={titleSegments}
socialLinks={socialLinks}
linkCards={linkCards}
/>
</ThemeProvider>
);
}