import { MapPin, ArrowRight } from "lucide-react"; import { Link } from "react-router-dom"; import Header from "@/components/Header"; import Footer from "@/components/Footer"; import { Button } from "@/components/ui/button"; const kentTowns = [ { name: "Maidstone", description: "County town of Kent, serving all ME postcodes" }, { name: "Canterbury", description: "Historic cathedral city and surrounding villages" }, { name: "Ashford", description: "Fast-growing town with excellent transport links" }, { name: "Tunbridge Wells", description: "Elegant spa town and nearby areas" }, { name: "Folkestone", description: "Coastal town and surrounding communities" }, { name: "Dover", description: "Famous port town and white cliffs area" }, { name: "Margate", description: "Seaside resort and Thanet district" }, { name: "Ramsgate", description: "Historic harbour town and nearby areas" }, { name: "Broadstairs", description: "Charming coastal town in Thanet" }, { name: "Sevenoaks", description: "Affluent commuter town and villages" }, { name: "Tonbridge", description: "Historic market town and surroundings" }, { name: "Dartford", description: "Gateway to Kent and nearby areas" }, { name: "Gravesend", description: "Thames-side town and surroundings" }, { name: "Chatham", description: "Medway town with rich maritime history" }, { name: "Rochester", description: "Historic cathedral city in Medway" }, { name: "Gillingham", description: "Largest Medway town and nearby areas" }, { name: "Sittingbourne", description: "Market town in Swale district" }, { name: "Faversham", description: "Historic market town and creek area" }, { name: "Whitstable", description: "Famous oyster town on the coast" }, { name: "Herne Bay", description: "Traditional seaside resort" }, { name: "Deal", description: "Charming coastal town near Dover" }, { name: "Sandwich", description: "Medieval Cinque Port town" }, { name: "Cranbrook", description: "Picturesque Weald town" }, { name: "Tenterden", description: "Historic market town in the Weald" }, { name: "Hythe", description: "Coastal town on Romney Marsh" }, { name: "New Romney", description: "Ancient Cinque Port on Romney Marsh" }, { name: "Paddock Wood", description: "Growing town near Tonbridge" }, { name: "Edenbridge", description: "Small town on Surrey border" }, { name: "Swanley", description: "Town near the M25 corridor" }, { name: "West Malling", description: "Historic town with abbey ruins" }, ]; const ServiceAreas = () => { const scrollToQuote = () => { window.location.href = "/#quote-form"; }; return (
{/* Hero Section */}

Serving All of Kent

Professional pattern imprinted concrete driveways and patios across Kent. From Dartford to Dover, Maidstone to Margate – we cover the entire county.

{/* Towns Grid */}

Areas We Cover

We provide pattern imprinted concrete services throughout Kent. Click on your area to get a free quote.

{kentTowns.map((town) => (

{town.name}

{town.description}

))}
{/* CTA Section */}

Don't See Your Area?

We cover all of Kent and may also service areas just outside the county. Get in touch to check if we can help with your project.

); }; export default ServiceAreas;