53 lines
2.4 KiB
TypeScript
53 lines
2.4 KiB
TypeScript
export const staticPages = {
|
|
'pack-walks': {
|
|
title: 'Pack Walks for Small Dogs | Mt Eden, Kingsland & Auckland Central | Goodwalk',
|
|
description:
|
|
'Tiny Gang pack walks for small and medium dogs across Mt Eden, Kingsland, Ponsonby, Grey Lynn and Auckland Central. Small groups, calm outings, free pickup and drop-off.',
|
|
canonicalPath: '/pack-walks'
|
|
},
|
|
'dog-walking': {
|
|
title: '1:1 Dog Walks Auckland | Mt Eden, Ponsonby & Kingsland | Goodwalk',
|
|
description:
|
|
'One-on-one dog walks across Auckland Central — Mt Eden, Kingsland, Ponsonby, Grey Lynn and more. For dogs who need more space, attention, and a calmer routine.',
|
|
canonicalPath: '/dog-walking'
|
|
},
|
|
'puppy-visits': {
|
|
title: 'Puppy Visits Auckland Central | Mt Eden, Ponsonby & Grey Lynn | Goodwalk',
|
|
description:
|
|
'In-home puppy visits across Mt Eden, Ponsonby, Grey Lynn, Kingsland and Auckland Central. Toilet breaks, feeding, play, and calm one-on-one care while you are out.',
|
|
canonicalPath: '/puppy-visits'
|
|
},
|
|
'our-pricing': {
|
|
title: 'Dog Walking Prices Auckland | Pack Walks & 1:1 Walks | Goodwalk',
|
|
description:
|
|
'Transparent pricing for Goodwalk pack walks, 1:1 dog walks, and puppy visits across Auckland Central. From $49.50 per walk. Free Meet & Greet included.',
|
|
canonicalPath: '/our-pricing'
|
|
},
|
|
about: {
|
|
title: 'About Goodwalk | Dog Walkers in Mt Eden, Kingsland & Auckland Central',
|
|
description:
|
|
'Meet Alessandra, founder of Goodwalk — Auckland Central\'s small dog walking specialist. Serving Mt Eden, Kingsland, Ponsonby, Grey Lynn and surrounding suburbs with 30+ five-star reviews.',
|
|
canonicalPath: '/about'
|
|
},
|
|
'contact-us': {
|
|
title: 'Book a Dog Walker in Auckland | Contact Goodwalk',
|
|
description:
|
|
'Book a free Meet & Greet or send an enquiry to Goodwalk. Auckland Central dog walking specialists serving Mt Eden, Kingsland, Ponsonby, Grey Lynn and surrounding suburbs.',
|
|
canonicalPath: '/contact-us'
|
|
},
|
|
'terms-and-conditions': {
|
|
title: 'Terms & Conditions',
|
|
description: 'Terms and conditions for Goodwalk Auckland dog walking services.',
|
|
canonicalPath: '/terms-and-conditions',
|
|
noindex: true
|
|
},
|
|
'privacy-policy': {
|
|
title: 'Privacy Policy',
|
|
description: 'Privacy policy for Goodwalk Auckland dog walking services.',
|
|
canonicalPath: '/privacy-policy',
|
|
noindex: true
|
|
}
|
|
} as const;
|
|
|
|
export type StaticPageSlug = keyof typeof staticPages;
|