68 lines
2.6 KiB
TypeScript
68 lines
2.6 KiB
TypeScript
|
|
import type { ServicePageContent } from '$lib/types';
|
||
|
|
|
||
|
|
export const puppyVisitsContent: ServicePageContent = {
|
||
|
|
hero: {
|
||
|
|
eyebrow: 'Puppy Visits',
|
||
|
|
title: 'Introducing Puppy Visits: Building strong foundations for our pack walks!',
|
||
|
|
paragraphs: [
|
||
|
|
"We love puppies! Our puppy home visits are perfect for young pups not quite ready to join the pack and busy owners with hectic schedules. We lay the groundwork for future pack walks, including fun games, potty breaks, and even feeding if required. Let us help your furry friend thrive while you're away!"
|
||
|
|
],
|
||
|
|
imageUrl: '/images/auckland-puppy-home-visit.jpg',
|
||
|
|
imageAlt: 'Puppy Visits page splash image'
|
||
|
|
},
|
||
|
|
pricing: {
|
||
|
|
title: 'Puppy Visits',
|
||
|
|
plans: [
|
||
|
|
{
|
||
|
|
title: '20 Minutes',
|
||
|
|
price: '$39',
|
||
|
|
period: 'Per Visit',
|
||
|
|
features: ['Bathroom break', 'Pet feed', 'Basic training', 'Enrichment games']
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: '45 Minutes',
|
||
|
|
price: '$49',
|
||
|
|
period: 'Per Visit',
|
||
|
|
features: ['Bathroom break', 'Pet feed', 'Basic training', 'Enrichment games']
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: '1 Hour',
|
||
|
|
price: '$55',
|
||
|
|
period: 'Per Visit',
|
||
|
|
features: ['Bathroom break', 'Pet feed', 'Basic training', 'Enrichment games']
|
||
|
|
}
|
||
|
|
]
|
||
|
|
},
|
||
|
|
benefits: {
|
||
|
|
title: 'Puppy Visits benefits',
|
||
|
|
items: [
|
||
|
|
{
|
||
|
|
title: 'Enrichment',
|
||
|
|
body: 'From stimulating games to sensory toys, we keep those curious minds engaged and little tails wagging.'
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'Setting up the basics for pack walks',
|
||
|
|
body: "Lay the groundwork for your pup's adult life. We'll guide you through setting the right tone, offering basic training tips and tricks along the way."
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'Reduce anxiety',
|
||
|
|
body: "With time your pup will know when to expect a visit, reducing the chances of accidents while you're away. With regular visits, your pup will feel loved and secure, minimizing any time spent at home alone."
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'Expert advise',
|
||
|
|
body: "As experienced dog pawrents, we've been through it all with many adorable puppies. Consider us your go-to for any questions or concerns as your furry friend grows up."
|
||
|
|
}
|
||
|
|
]
|
||
|
|
},
|
||
|
|
testimonialsHeading: 'What our clients say',
|
||
|
|
booking: {
|
||
|
|
title: 'Ready to join the Tiny Gang?',
|
||
|
|
subtitle: '',
|
||
|
|
formAction: '/booking',
|
||
|
|
serviceOptions: [],
|
||
|
|
ownerStepLabel: 'Your details',
|
||
|
|
dogStepLabel: 'Dog details',
|
||
|
|
dogIntro: 'Tell us about your puppy, your area, and any special needs so we can plan the right visit.'
|
||
|
|
}
|
||
|
|
};
|