Files
gw-svelte/src/lib/content/static-pages.ts
T
admin c95d2e8c25 SEO: pricing-rich service schema, AggregateRating, tighter meta
- Service pages now include AggregateOffer in JSON-LD (priceCurrency
  NZD, lowPrice/highPrice/offerCount derived from each service's
  pricing.plans). Unlocks price-rich SERP results.
- Homepage LocalBusiness schema now includes AggregateRating and
  per-testimonial Review entries (5 stars, n reviews). Eligible for
  star ratings in SERPs.
- Puppy Visits meta description rewritten — was 241 chars opening
  with "Puppy Visits Introducing Puppy Visits..." Now a tight 144
  chars with Auckland keyword.
- Removed the dead /about-us static-pages entry; the 301 redirect
  in [slug]/+page.server.ts already routes it to /about, so the
  duplicate metadata was unreachable. Pruned matching dead branches
  in [slug]/+page.svelte and RouteSkeleton.svelte for clarity.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-05 14:06:31 +12:00

50 lines
1.9 KiB
TypeScript

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',
description:
'In-home puppy visits across Auckland Central — toilet breaks, feeding, play and gentle early training for pups not yet ready for pack walks.',
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',
description: 'Book a Meet & Greet or send a general enquiry to Goodwalk Auckland dog walking services.',
canonicalPath: '/contact-us'
},
'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;