99 lines
4.3 KiB
TypeScript
99 lines
4.3 KiB
TypeScript
import type { ServicePageContent } from '$lib/types';
|
||
|
||
export const packWalksContent: ServicePageContent = {
|
||
hero: {
|
||
eyebrow: 'Pack Walks',
|
||
title: 'Join our Tiny Gang!',
|
||
paragraphs: [
|
||
'Fun, safe, and specially designed for little paws, these adventures help your dog build friendships and confidence in a calm, friendly group.',
|
||
'We only welcome sociable dogs, so every outing feels secure and stress-free. As small dog owners ourselves, we know just what it takes to help your pup feel relaxed, happy, and right at home.',
|
||
'Join the Tiny Gang today—because your dog deserves more than just a walk. They deserve a tail-wagging good time!'
|
||
],
|
||
imageUrl: '/images/auckland-small-dog-pack-walk.jpg',
|
||
imageAlt: 'Small dogs together on a Goodwalk Tiny Gang pack walk'
|
||
},
|
||
highlight: {
|
||
eyebrow: '▼・ᴥ・▼',
|
||
title: 'Goodwalk is the best choice for small and medium size dogs!',
|
||
imageUrl: '/images/tiny-gang-auckland-dog-pack.jpg',
|
||
imageAlt: 'Goodwalk Tiny Gang dogs gathered together in Auckland'
|
||
},
|
||
pricing: {
|
||
title: 'Tiny Gang Prices',
|
||
intro:
|
||
'Small packs of 4-8 dogs, 2-hour outings at Auckland’s scenic dog parks and beaches, with free pick-up and drop-off included. We reinforce recall, car manners, and leash etiquette while your dog plays. Booked as a permanent weekly slot — gift your dog the best life!',
|
||
plans: [
|
||
{
|
||
title: '1 Walk',
|
||
price: '$58',
|
||
period: 'Per Walk',
|
||
features: ['Free pickup/dropoff', '1 hour adventure', 'Social media updates', 'Basic training']
|
||
},
|
||
{
|
||
title: '2-3 Walks',
|
||
price: '$55',
|
||
period: 'Per Walk',
|
||
popular: true,
|
||
features: ['Free pickup/dropoff', '1 hour adventure', 'Social media updates', 'Basic training']
|
||
},
|
||
{
|
||
title: '4-5 Walks',
|
||
price: '$49.50',
|
||
period: 'Per Walk',
|
||
features: ['Free pickup/dropoff', '1 hour adventure', 'Social media updates', 'Basic training']
|
||
},
|
||
{
|
||
title: 'Casual Walk',
|
||
price: '$65',
|
||
period: 'Per Walk',
|
||
features: ['Free pickup/dropoff', '1 hour adventure', 'Social media updates', 'Basic training']
|
||
}
|
||
],
|
||
extras: [
|
||
{ label: 'Extra Dog', note: 'From same household', price: '$35' },
|
||
{ label: 'Muddy Wash', price: '$35' },
|
||
{ label: '5 Hour Day Out', note: 'Not suitable for all dogs', price: '$90' }
|
||
],
|
||
scarcityNote: 'We keep packs small (4-8 dogs) — popular days fill up fast.'
|
||
},
|
||
benefits: {
|
||
title: 'Tiny Gang membership benefits',
|
||
items: [
|
||
{
|
||
title: 'Socialisation with other dogs',
|
||
body: 'Tiny Gang pack walks help small and medium-sized dogs mingle and learn social skills from each other, boosting their confidence and positive behaviour.'
|
||
},
|
||
{
|
||
title: 'Tailored pace',
|
||
body: 'Our handlers can adjust the pace and intensity of the walk to suit the energy levels and abilities of small and medium-sized dogs, ensuring a pleasant and enjoyable experience for all participants.'
|
||
},
|
||
{
|
||
title: 'Comfort',
|
||
body: 'Smaller groups create a more relaxed and comfortable atmosphere for dogs, allowing them to explore and enjoy the walk without feeling overwhelmed by larger dogs.'
|
||
},
|
||
{
|
||
title: 'Increased bonding',
|
||
body: 'Tiny Gang pack walks foster stronger bonds between dogs and their walker, as well as between the dogs themselves, enhancing trust and companionship among the group.'
|
||
},
|
||
{
|
||
title: 'Individualised attention',
|
||
body: 'Small pack sizes allow for more personalised care and attention from the walker, addressing the unique needs and preferences of small and medium-sized breeds.'
|
||
},
|
||
{
|
||
title: 'Safety',
|
||
body: "With a smaller group composed of dogs of similar sizes, there's reduced risk of accidental injury or intimidation, ensuring a safer walking environment."
|
||
}
|
||
]
|
||
},
|
||
testimonialsHeading: 'What our clients say',
|
||
booking: {
|
||
title: 'Join the Tiny Gang!',
|
||
subtitle: '',
|
||
formAction: '/contact-us',
|
||
serviceOptions: [],
|
||
ownerStepLabel: 'Your details',
|
||
dogStepLabel: 'Dog details',
|
||
dogIntro: 'Tell us about your dog and where you are based so we can plan the right Tiny Gang Meet & Greet.'
|
||
}
|
||
};
|