build isue fixed

This commit is contained in:
Selvi 2026-04-23 14:34:07 +05:30
parent 4a9948c6e0
commit 36f91a3917

View File

@ -2,8 +2,19 @@
import Link from 'next/link'; import Link from 'next/link';
interface City {
name: string;
primary?: boolean;
href?: string;
}
interface Region {
name: string;
cities: City[];
}
export default function StainingTerritory() { export default function StainingTerritory() {
const regions = [ const regions: Region[] = [
{ {
name: "Waterloo Region", name: "Waterloo Region",
cities: [ cities: [