"use client"; import Link from 'next/link'; export default function StainingTerritory() { const regions = [ { name: "Waterloo Region", cities: [ { name: "Kitchener", primary: true, href: "https://vgfence.com/fence-staining-kitchener" }, { name: "Waterloo", primary: true, href: "https://vgfence.com/fence-staining-waterloo" }, { name: "Cambridge", primary: true, href: "https://vgfence.com/fence-staining-cambridge" }, { name: "Ayr", href: "https://vgfence.com/fence-staining-ayr" }, { name: "Breslau", href: "https://vgfence.com/fence-staining-breslau" }, { name: "Elmira", href: "https://vgfence.com/fence-staining-elmira" }, { name: "St. Jacobs", href: "https://vgfence.com/fence-staining-st-jacobs" }, { name: "New Hamburg", href: "https://vgfence.com/fence-staining-new-hamburg" }, { name: "Baden", href: "https://vgfence.com/fence-staining-baden" }, { name: "Wellesley", href: "https://vgfence.com/fence-staining-wellesley" }, ] }, { name: "Guelph & Wellington", cities: [ { name: "Guelph", primary: true, href: "https://vgfence.com/fence-staining-guelph" }, { name: "Fergus", href: "https://vgfence.com/fence-staining-fergus" }, { name: "Elora", href: "https://vgfence.com/fence-staining-elora" }, { name: "Rockwood", href: "https://vgfence.com/fence-staining-rockwood" }, { name: "Acton", href: "https://vgfence.com/fence-staining-acton" }, { name: "Georgetown", href: "https://vgfence.com/fence-staining-georgetown" }, ] }, { name: "Halton & Hamilton", cities: [ { name: "Hamilton", primary: true, href: "https://vgfence.com/fence-staining-hamilton" }, { name: "Burlington", primary: true, href: "https://vgfence.com/fence-staining-burlington" }, { name: "Milton", href: "https://vgfence.com/fence-staining-milton" }, { name: "Oakville", href: "https://vgfence.com/fence-staining-oakville" }, { name: "Stoney Creek", href: "https://vgfence.com/fence-staining-stoney-creek" }, { name: "Grimsby", href: "https://vgfence.com/fence-staining-grimsby" }, { name: "Brantford", href: "https://vgfence.com/fence-staining-brantford" }, { name: "Paris", href: "https://vgfence.com/fence-staining-paris" }, ] }, { name: "GTA & Peel", cities: [ { name: "Mississauga", primary: true, href: "https://vgfence.com/fence-staining-mississauga" }, { name: "Brampton", primary: true, href: "https://vgfence.com/fence-staining-brampton" }, { name: "Vaughan", href: "https://vgfence.com/fence-staining-vaughan" }, { name: "Markham", href: "https://vgfence.com/fence-staining-markham" }, { name: "Richmond Hill", href: "https://vgfence.com/fence-staining-richmond-hill" }, ] }, { name: "Oxford & Perth", cities: [ { name: "Woodstock", primary: true, href: "https://vgfence.com/fence-staining-woodstock" }, { name: "Stratford", primary: true, href: "https://vgfence.com/fence-staining-stratford" }, { name: "Ingersoll" }, { name: "Tillsonburg" }, { name: "St. Marys" }, ] }, { name: "London & Elgin", cities: [ { name: "London", primary: true, href: "https://vgfence.com/fence-staining-london-ontario" }, { name: "St. Thomas" }, { name: "Strathroy" }, { name: "Komoka" }, ] }, { name: "Southwest Ontario", cities: [ { name: "Windsor", primary: true }, { name: "Chatham", primary: true }, { name: "Leamington" }, { name: "Sarnia" }, { name: "Petrolia" }, ] }, { name: "Extended Service", cities: [ { name: "Niagara Falls", primary: true }, { name: "St. Catharines",}, { name: "Welland" }, { name: "Barrie", primary: true }, { name: "Owen Sound" }, { name: "Collingwood" }, ] }, ]; return (
Where we serve

Wood staining services
across Ontario.

Staining services are based in KWC with coverage across Waterloo Region and surrounding communities. Expert Stain & Seal product supply covers 250km across Ontario.

{regions.map((region, index) => (
{region.name}
    {region.cities.map((city, cIdx) => (
  • {city.href ? ( {city.name} ) : ( city.name )}
  • ))}
))}
); }