import Link from 'next/link'; export default function Territory() { const cities = [ { type: 'home', name: 'Kitchener · Waterloo · Cambridge', sub: 'Home base — priority service area', dist: '0km', link: null }, { type: 'near', name: 'Guelph', sub: 'High residential & commercial growth', dist: '~30km', link: "https://vgfence.com/fence-supply-guelph" }, { type: 'near', name: 'Brantford', sub: 'Contractors, builders, industrial', dist: '~50km', link: "https://vgfence.com/fence-supply-brantford" }, { type: 'near', name: 'Hamilton', sub: 'Industrial, commercial, property managers', dist: '~75km', link: "https://vgfence.com/fence-supply-hamilton" }, { type: 'home', name: 'Toronto / GTA', sub: 'Commercial builders, developers, high volume', dist: '~110km', link: "https://vgfence.com/fence-supply-toronto" }, { type: 'home', name: 'London', sub: 'Large market, residential & commercial', dist: '~120km', link: "https://vgfence.com/fence-supply-london-ontario" }, { type: 'far', name: 'Windsor', sub: 'Southwest Ontario hub', dist: '~230km', link: "https://vgfence.com/fence-supply-windsor" }, { type: 'far', name: 'Barrie', sub: 'Extended service area', dist: '~160km', link: "https://vgfence.com/fence-supply-barrie" }, { type: 'far', name: 'Niagara · Owen Sound', sub: 'Delivery available', dist: '~150–175km', link: null }, ]; return (
Service territory

Based in KWC.
Delivering everywhere.

250km radius
KWC Guelph ~30km Hamilton ~75km Toronto / GTA ~110km Brantford ~50km Stratford ~45km London ~120km Owen Sound ~175km Barrie ~160km Niagara ~150km Windsor ~230km Major hub Regional city 250km radius
📍 Home base: Kitchener · Waterloo · Cambridge
{cities.map((city, index) => ( city.link ? (
{city.name}
{city.sub}
{city.dist}
) : (
{city.name}
{city.sub}
{city.dist}
) ))}
); }