From 19688d8e2de9f3c9222a51cd88cfbc4dfb9d58bd Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 23:08:30 +0000 Subject: [PATCH] Add src/app/marshall-construction/page.tsx --- src/app/marshall-construction/page.tsx | 60 ++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 src/app/marshall-construction/page.tsx diff --git a/src/app/marshall-construction/page.tsx b/src/app/marshall-construction/page.tsx new file mode 100644 index 0000000..3b44ac5 --- /dev/null +++ b/src/app/marshall-construction/page.tsx @@ -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 ( + + + + ); +} \ No newline at end of file