Files
gw-svelte/src/lib/content/static-pages.ts
T

50 lines
1.9 KiB
TypeScript
Raw Normal View History

2026-05-02 08:26:18 +12:00
export const staticPages = {
'pack-walks': {
title: 'Pack Walks | Join Our Tiny Gang',
description:
'Join our Tiny Gang pack walks. We take our dogs to beautiful parks and beaches around the Auckland region.',
canonicalPath: '/pack-walks'
},
'dog-walking': {
title: '1 on 1 Walks | Professional Dog Walking | Auckland Wide',
description:
'Our 1:1 (one on one) are perfect for dogs with great recall and leash manners, our walks guarantee a stress-free experience!',
canonicalPath: '/dog-walking'
},
'puppy-visits': {
title: 'Puppy Visits | Auckland In-Home Puppy Care | Goodwalk',
2026-05-02 08:26:18 +12:00
description:
'In-home puppy visits across Auckland Central — toilet breaks, feeding, play and gentle early training for pups not yet ready for pack walks.',
2026-05-02 08:26:18 +12:00
canonicalPath: '/puppy-visits'
},
'our-pricing': {
title: 'Our Pricing',
description:
'Learn more about the pricing for Goodwalk. Prices for our Tiny Gang pack walks and 1 on 1 solo walks.',
canonicalPath: '/our-pricing'
},
about: {
title: 'About Us | Dog Walkers',
description:
'Learn more about Kingsland based dog walking company Goodwalk. We offer our Tiny Gang pack walks throughout the Auckland region. Solo (1:1 walks), homestays and more.',
canonicalPath: '/about'
},
'contact-us': {
title: 'Contact Us',
2026-05-04 20:32:24 +12:00
description: 'Book a Meet & Greet or send a general enquiry to Goodwalk Auckland dog walking services.',
canonicalPath: '/contact-us'
2026-05-02 08:26:18 +12:00
},
'terms-and-conditions': {
title: 'Terms & Conditions',
description: 'Terms and conditions for Goodwalk Auckland dog walking services.',
canonicalPath: '/terms-and-conditions'
},
'privacy-policy': {
title: 'Privacy Policy',
description: 'Privacy policy for Goodwalk Auckland dog walking services.',
canonicalPath: '/privacy-policy'
}
} as const;
export type StaticPageSlug = keyof typeof staticPages;