134 lines
6.0 KiB
TypeScript
134 lines
6.0 KiB
TypeScript
import type { ServicePageContent } from '$lib/types';
|
||
|
||
export const dogWalkingContent: ServicePageContent = {
|
||
hero: {
|
||
eyebrow: '1:1 Walks',
|
||
title: 'A calmer walk for dogs who need more attention',
|
||
subtitle: 'Full attention, your dog\'s pace. Free pickup and drop-off across Auckland Central.',
|
||
paragraphs: [
|
||
'Goodwalk 1:1 Walks are for dogs who do better with more individual attention, a quieter setup, and a walk tailored to their own pace, confidence, and routine.',
|
||
'They can be a great fit for larger dogs, dogs who are not suited to group walks, or owners who want a more personal approach with extra care and consistency.',
|
||
'If your dog needs space, structure, and a walker who can focus fully on them, our one-on-one walks are designed for exactly that.',
|
||
'We run 1:1 walks across Auckland Central — including Mt Eden, Ponsonby, Kingsland, Grey Lynn, Herne Bay, and surrounding suburbs — with free pickup and drop-off included.'
|
||
],
|
||
imageUrl: '/images/auckland-large-dog-one-on-one-walk.jpg',
|
||
imageAlt: 'Large breed dog enjoying a Goodwalk one on one dog walk',
|
||
chips: [
|
||
{ icon: 'fas fa-dog', label: 'One-on-one walk' },
|
||
{ icon: 'fas fa-tag', label: 'From $45 / walk' },
|
||
{ icon: 'fas fa-car', label: 'Free pickup & drop-off' }
|
||
],
|
||
cta: { label: 'Book a free Meet & Greet', href: '#newlead', variant: 'yellow' }
|
||
},
|
||
highlight: {
|
||
eyebrow: 'One dog. Full attention.',
|
||
title: 'Built for dogs who need a more individual kind of walk',
|
||
imageUrl: '/images/auckland-dogs-outdoor-pack.jpg',
|
||
imageAlt: 'Goodwalk dogs gathered together outdoors',
|
||
points: [
|
||
{
|
||
title: 'A quieter setup from the start',
|
||
body:
|
||
'1:1 walks suit dogs who feel better without the pressure, pace, or unpredictability of a group environment.'
|
||
},
|
||
{
|
||
title: 'Handled around your dog, not a pack routine',
|
||
body:
|
||
'We can adjust the route, timing, and tempo around your dog’s confidence, energy, and what helps them stay settled.'
|
||
},
|
||
{
|
||
title: 'A more considered fit for larger or more sensitive dogs',
|
||
body:
|
||
'For dogs who need more space, more clarity, or more personal attention, 1:1 walks give us room to do things properly.'
|
||
}
|
||
],
|
||
collageImages: [
|
||
{
|
||
imageUrl: '/images/one-on-one-dog-portrait-1.jpg',
|
||
imageAlt: 'Happy black dog on a one-on-one Goodwalk walk in Auckland'
|
||
},
|
||
{
|
||
imageUrl: '/images/one-on-one-dog-portrait-2.jpg',
|
||
imageAlt: 'Older black dog enjoying a calm one-on-one Goodwalk walk in Auckland'
|
||
},
|
||
{
|
||
imageUrl: '/images/one-on-one-dog-portrait-3.jpg',
|
||
imageAlt: 'Brown curly dog resting during a one-on-one Goodwalk walk in Auckland'
|
||
}
|
||
]
|
||
},
|
||
pricing: {
|
||
title: 'Choose the walk length that suits your dog',
|
||
intro:
|
||
'Our 1:1 walks are shaped around your dog, not a group schedule. Ideal for dogs who need extra attention, a steadier pace, or a more personalised walking routine.',
|
||
plans: [
|
||
{
|
||
title: '30 Minute 1:1 Walk',
|
||
price: '$45',
|
||
period: 'Per Walk',
|
||
features: ['Free pickup and drop-off', 'Shorter one-on-one walk', 'Personal attention throughout', 'Good fit for lower-energy dogs']
|
||
},
|
||
{
|
||
title: '45 Minute 1:1 Walk',
|
||
price: '$55',
|
||
period: 'Per Walk',
|
||
popular: true,
|
||
features: ['Free pickup and drop-off', 'Balanced walk length for most dogs', 'Time for calm handling and structure', 'Best fit for many routines']
|
||
},
|
||
{
|
||
title: '60 Minute 1:1 Walk',
|
||
price: '$65',
|
||
period: 'Per Walk',
|
||
features: ['Free pickup and drop-off', 'Longer individual walk', 'More time for movement and engagement', 'Best for dogs needing a fuller outing']
|
||
}
|
||
],
|
||
extras: [
|
||
{ label: 'Extra Dog', note: 'Same household', price: '$20' },
|
||
{ label: 'Muddy Wash', price: '$35' }
|
||
],
|
||
scarcityNote: 'A limited number of 1:1 slots are available each week.'
|
||
},
|
||
benefits: {
|
||
title: 'Why some dogs do better on 1:1 walks',
|
||
intro:
|
||
'For dogs who need more space, steadier handling, or a more personalised pace, one-on-one walks can make the whole week feel easier.',
|
||
items: [
|
||
{
|
||
title: 'They get the walker’s full attention',
|
||
body: 'One-on-one walks give your dog focused handling and a calmer experience without competing with the needs of a group.'
|
||
},
|
||
{
|
||
title: 'The walk matches their pace',
|
||
body: 'We can tailor the route, speed, and duration to suit your dog’s energy, confidence, and physical needs.'
|
||
},
|
||
{
|
||
title: 'They have more space to relax',
|
||
body: 'Dogs who are not suited to pack walks often feel more comfortable when they can move through the world without the pressure of a group.'
|
||
},
|
||
{
|
||
title: 'You get a more tailored routine',
|
||
body: 'A 1:1 setup gives us more flexibility to build a walking routine around what works best for your dog and your week.'
|
||
},
|
||
{
|
||
title: 'There is room for better habits',
|
||
body: 'One-on-one walks create more opportunity to reinforce calm walking, better focus, and the practical behaviours that make daily life easier.'
|
||
},
|
||
{
|
||
title: 'You can feel more confident leaving them with us',
|
||
body: 'For owners of dogs who need a bit more care, 1:1 walks offer reassurance that your dog is getting a more considered, individual approach.'
|
||
}
|
||
]
|
||
},
|
||
testimonialsHeading: 'What our clients say',
|
||
booking: {
|
||
title: 'See if 1:1 walks are the right fit',
|
||
subtitle: 'Fill out your details below and we’ll arrange a free Meet & Greet to learn more about your dog.',
|
||
formAction: '/contact-us',
|
||
serviceOptions: [],
|
||
ownerStepLabel: 'Your details',
|
||
dogStepLabel: 'Your dog',
|
||
dogIntro:
|
||
'Tell us about your dog, your area, and anything important we should know so we can see whether a 1:1 walk is the right fit.'
|
||
}
|
||
};
|