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

50 lines
2.0 KiB
TypeScript
Raw Normal View History

2026-05-02 08:26:18 +12:00
export const staticPages = {
'pack-walks': {
2026-05-07 21:47:42 +12:00
title: 'Pack Walks for Small & Medium Dogs | Auckland Central',
2026-05-02 08:26:18 +12:00
description:
2026-05-07 21:47:42 +12:00
'Pack walks for sociable small and medium dogs in Auckland Central. Calm group outings, regular weekly routines, and free Meet & Greet with Goodwalk.',
2026-05-02 08:26:18 +12:00
canonicalPath: '/pack-walks'
},
'dog-walking': {
2026-05-07 21:47:42 +12:00
title: '1:1 Dog Walks for Dogs Who Need More Attention | Auckland Central',
2026-05-02 08:26:18 +12:00
description:
2026-05-07 21:47:42 +12:00
'One-on-one dog walks in Auckland Central for dogs who need more attention, more space, or a calmer routine. Free Meet & Greet with Goodwalk.',
2026-05-02 08:26:18 +12:00
canonicalPath: '/dog-walking'
},
'puppy-visits': {
2026-05-07 21:47:42 +12:00
title: 'Puppy Visits & In-Home Puppy Care | Auckland Central',
2026-05-02 08:26:18 +12:00
description:
2026-05-07 21:47:42 +12:00
'In-home puppy visits across Auckland Central with toilet breaks, feeding, play, and early routine support. A calm start before future 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;