98 lines
4.3 KiB
TypeScript
98 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:
|
|||
|
|
'Our pack walks are a permanent booking of at least one walk day a week. Our Tiny Gang pack outing typically lasts 2 hours or more, including a one-hour walk at one of Auckland’s scenic dog parks or beaches. Additionally, pick-up and drop-off services are provided for your convenience. We assist in reinforcing basic training, including recall, car manners, and leash etiquette. 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' }
|
|||
|
|
]
|
|||
|
|
},
|
|||
|
|
benefits: {
|
|||
|
|
title: 'Tiny Gang membership benefits',
|
|||
|
|
items: [
|
|||
|
|
{
|
|||
|
|
title: 'Socialization 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 behavior.'
|
|||
|
|
},
|
|||
|
|
{
|
|||
|
|
title: 'Taliored peace',
|
|||
|
|
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: 'Individualized attention',
|
|||
|
|
body: 'Small pack sizes allow for more personalized 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: '/booking',
|
|||
|
|
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.'
|
|||
|
|
}
|
|||
|
|
};
|