Files
gw-svelte/src/lib/content/homepage.ts
T

253 lines
11 KiB
TypeScript
Raw Normal View History

2026-05-02 08:26:18 +12:00
import type { HomePageContent } from '$lib/types';
import { sharedServices } from '$lib/content/services';
2026-05-02 08:26:18 +12:00
export const homepageContent: HomePageContent = {
seo: {
2026-05-12 00:45:02 +12:00
title: 'Auckland Dog Walker | Pack Walks & 1:1 Walks | Goodwalk',
2026-05-02 08:26:18 +12:00
description:
2026-05-12 00:45:02 +12:00
'Trusted by 30+ Auckland families. Pack walks from $49.50. Free Meet & Greet. Covering Mt Eden, Ponsonby, Grey Lynn, Kingsland & more. Book online today.'
2026-05-02 08:26:18 +12:00
},
navigation: {
desktopLinks: [
{ label: 'Our Services', href: '#services' },
{ label: 'Our Pricing', href: '/our-pricing' },
{ label: 'About Us', href: '/about' }
],
mobileLinks: [
{ label: 'Home', href: '/' },
{ label: 'Pack Walks', href: '/pack-walks' },
{ label: '1:1 Walks', href: '/dog-walking' },
{ label: 'Puppy Visits', href: '/puppy-visits' },
{ label: 'Our Pricing', href: '/our-pricing' },
{ label: 'About Us', href: '/about' },
{ label: 'Contact Us', href: '/contact-us' }
2026-05-02 08:26:18 +12:00
],
2026-05-06 16:47:15 +12:00
cta: { label: 'Contact Us', href: '/contact-us', variant: 'yellow' },
2026-05-02 08:26:18 +12:00
instagram: { href: 'https://www.instagram.com/goodwalk.nz/', external: true },
megaMenuServices: sharedServices.map((service) => ({
icon: service.icon,
label: service.title,
description: service.megaMenuDescription,
href: service.href
})),
2026-05-03 11:49:59 +12:00
megaMenuFooter: { label: 'View all pricing', href: '/our-pricing' }
2026-05-02 08:26:18 +12:00
},
hero: {
2026-05-07 21:47:42 +12:00
title: 'Come home to a',
highlight: 'calm, happy dog',
mobileTitle: 'Come home to a\ncalm, happy dog',
subtitle:
'Dog walking for busy Auckland Central professionals who want a reliable, relationship-led team their dog knows by name.',
2026-05-06 11:36:19 +12:00
primaryCta: { label: 'Book a Meet & Greet', href: '#newlead', variant: 'yellow' },
2026-05-07 21:47:42 +12:00
secondaryCta: {
label: 'See how it works',
href: '#how-it-works',
variant: 'outline'
2026-05-07 21:47:42 +12:00
},
2026-05-02 08:26:18 +12:00
imageUrl: '/images/auckland-dog-walking-happy-dog-hero.png',
imageAlt: 'Happy dog ready for a professional pack walk with Goodwalk Auckland dog walking service'
},
intro: {
2026-05-03 11:49:59 +12:00
text: 'Trusted by Auckland dog parents.',
2026-05-02 08:26:18 +12:00
reviewCta: {
2026-05-06 08:27:24 +12:00
label: '30+ five-star Google reviews',
2026-05-02 08:26:18 +12:00
href: 'https://g.page/r/CUsvrWPhkYrAEB0/',
external: true
}
},
promise: {
2026-05-07 21:47:42 +12:00
title: 'Meet Aless,',
subtitle: 'the heart of Goodwalk',
2026-05-03 11:49:59 +12:00
body: [
'Goodwalk is built around one thing: a dog who knows the routine, and an owner who stops worrying.',
'Alessandra runs every walk personally — calm, experienced, and trusted by Auckland Central families.',
"Your dog knows who's at the door. You know what happens on the walk. Ready to join the"
2026-05-03 11:49:59 +12:00
],
2026-05-03 11:16:53 +12:00
emphasis: 'TINY GANG?',
2026-05-06 08:27:24 +12:00
cta: { label: 'Book a free Meet & Greet', href: '/contact-us', variant: 'green' },
2026-05-12 00:45:02 +12:00
imageUrl: '/images/founder-image-aless-goodwalk.jpg',
2026-05-07 21:47:42 +12:00
imageAlt: 'Alessandra from Goodwalk with a dog in Auckland'
2026-05-02 08:26:18 +12:00
},
services: sharedServices.map((service) => ({
icon: service.icon,
title: service.title,
body: service.cardBody,
priceFrom: service.priceFrom,
href: service.href
})),
2026-05-06 17:42:43 +12:00
howItWorks: {
title: 'How it works',
2026-05-07 21:47:42 +12:00
intro:
'A calm, simple start designed to give you confidence quickly and help your dog settle into the right routine.',
2026-05-06 17:42:43 +12:00
steps: [
{
2026-05-07 21:47:42 +12:00
phase: 'Meet',
benefit: 'No pressure, just clarity',
title: 'We get to know your dog properly',
body:
'Your free Meet & Greet gives you a chance to ask questions, talk through routine and temperament, and make sure the fit feels right before anything starts.',
2026-05-06 17:42:43 +12:00
icon: 'fas fa-handshake'
},
{
2026-05-07 21:47:42 +12:00
phase: 'Settle',
benefit: 'A smoother start for nervous dogs',
title: 'Your dog eases in without overwhelm',
body:
'We start with assessment walks so your dog can build confidence, settle with the walker, and find the right pace before moving into a regular routine.',
2026-05-06 17:42:43 +12:00
icon: 'fas fa-clipboard-check'
},
{
2026-05-07 21:47:42 +12:00
phase: 'Thrive',
benefit: 'The outcome you actually want',
title: 'You get a calmer, happier dog at home',
body:
'Once everything feels right, your dog joins their regular walks and comes home exercised, settled, and ready to relax while you get more peace of mind in your week.',
2026-05-06 17:42:43 +12:00
icon: 'fas fa-heart'
}
]
},
2026-05-02 08:26:18 +12:00
values: [
{
icon: 'fas fa-heart',
2026-05-07 21:47:42 +12:00
title: 'Calm, kind handling',
2026-05-02 08:26:18 +12:00
body:
'Positive reinforcement and patient routines so your dog builds confidence, not stress.'
2026-05-02 08:26:18 +12:00
},
{
icon: 'fas fa-camera',
title: 'Updates you will actually want',
2026-05-02 08:26:18 +12:00
body:
"See your dog out enjoying the day. Less wondering, more peace of mind while you're at work."
2026-05-02 08:26:18 +12:00
},
{
icon: 'fas fa-users',
title: 'Small pack sizes',
2026-05-02 08:26:18 +12:00
body:
'48 dogs per group. Calm, structured walks with enough attention for every dog in the pack.'
2026-05-02 08:26:18 +12:00
},
{
icon: 'fas fa-shield-heart',
2026-05-07 21:47:42 +12:00
title: 'Safety-first by default',
2026-05-02 08:26:18 +12:00
body:
'Pet first aid, careful screening, and proactive handling built into every walk — not added as an extra.'
2026-05-02 08:26:18 +12:00
}
],
testimonials: [
{
quote:
'Love Aless! She is so amazing with my slightly hyper and anxious dog. She is great with communication if anything on either of our ends need to change. Archie love his walks, and I love the photos she posts of him.',
reviewer: 'Kate',
detail: "Archie's mum",
imageUrl: '/images/archie-auckland-dog-walking-review.jpg'
},
{
quote:
'GoodWalk was the best dog walking service for my little pooch ! Aless was very helpful - basically doubled as a second mum to Monty. She always provided feedback on his outings and assisted where possible with any additional training that she felt he could work on and made recommendations where necessary which i feel is what every dog mum wants and needs!',
reviewer: 'Estelle',
detail: "Monty's mum",
imageUrl: '/images/monty-auckland-dog-walking-review.jpg'
},
{
quote:
'Truly the best dog walker in Auckland! I feel so lucky to have found Aless and my little terrier Otis absolutely adores her. He enjoys his regular weekly walks and always comes back happy & tired. Love the updates on social media so I can see how my dog is enjoying his day! Aless makes logistics so easy too. Highly highly recommend, theres a reason she has 5 stars!',
reviewer: 'Ross',
2026-05-07 21:47:42 +12:00
detail: "Otis's dad",
2026-05-02 08:26:18 +12:00
imageUrl: '/images/otis-auckland-dog-walking-review.jpg'
},
{
quote:
'Alessandra has been walking and spending time with my pup since she was 10 weeks old, coming over and doing puppy visits through to transitioning her to pack walks with her little doggo friends. I know Alassandra loves and cares for my dog as much as I do and my dog has a great time! Cant recommend enough',
reviewer: 'Nina',
detail: "Wallace's mum",
imageUrl: '/images/wallace-auckland-dog-walking-review.jpg'
}
],
booking: {
title: "Let's meet!",
subtitle:
2026-05-07 21:47:42 +12:00
"A few contact details and well be in touch within 24 hours to arrange your free, no-obligation Meet & Greet.",
2026-05-04 20:32:24 +12:00
generalSubtitle:
2026-05-07 21:47:42 +12:00
"A few contact details and well reply properly within 24 hours.",
formAction: '/contact-us',
2026-05-03 11:49:59 +12:00
serviceOptions: ['Pack Walks', '1:1 Walks', 'Puppy Visits', 'Other Services'],
ownerStepLabel: 'Your details',
2026-05-04 20:32:24 +12:00
dogStepLabel: 'Your dog',
generalIntro:
2026-05-07 21:47:42 +12:00
'Need to send feedback, make a complaint, or ask a business question? Choose general enquiry and send us the details without filling in dog or service information.'
2026-05-02 08:26:18 +12:00
},
info: {
title: 'Locations & Hours',
intro: "We cover most of Auckland Central's suburbs:",
suburbs:
'Morningside, Kingsland, Ponsonby, Grey Lynn, Mt Albert, Mt Eden, Sandringham, Mt Roskill, Arch Hill, Freemans Bay, Herne Bay, Pt Chevalier, Avondale, Three Kings, Hillsborough, Eden Terrace, Balmoral.',
nearbyText: 'Live in a nearby suburb?',
2026-05-03 11:49:59 +12:00
nearbyCta: { label: 'Book a Meet & Greet', href: '#newlead' },
2026-05-02 08:26:18 +12:00
hoursLabel: 'Opening Hours',
hours: 'Monday to Friday, 8am - 4pm.',
faqTitle: 'FAQs',
2026-05-02 08:26:18 +12:00
faqs: [
{
question: 'Can any dog use your service?',
answer:
'All dogs that are onboarded with us must go through our screening process, which includes a minimum of two assessment walks.'
},
{
question: 'How does payment work?',
answer: 'All walks are paid for a week in advance, via invoice.'
},
2026-05-07 21:47:42 +12:00
{
question: 'Do you provide a casual service?',
answer:
'Yes, we do offer casual rates, but they are priced higher. The best value for money is regular walks.'
},
2026-05-03 11:49:59 +12:00
{
question: 'What requirements does my dog need?',
answer:
'All dogs onboarding with Goodwalk need to have a current Auckland Council dog registration and be up to date with vaccinations to ensure the health and safety of other dogs.'
},
2026-05-02 08:26:18 +12:00
{
question: 'Do you have insurance or First Aid training?',
answer:
'All walkers are covered by public liability insurance, and all walkers hold a current First Aid training certificate.'
2026-05-03 11:49:59 +12:00
},
2026-05-07 21:47:42 +12:00
{
question: 'Do I need to leave keys with you?',
answer:
'Usually, yes, if no one will be home when we collect or return your dog. We can go over the best option for access during your Meet & Greet.'
},
2026-05-03 11:49:59 +12:00
{
question: 'What happens if the weather is bad?',
answer:
"We operate in all weather conditions, except when there is a danger to the dog's health and safety."
2026-05-02 08:26:18 +12:00
}
]
},
instagram: {
2026-05-02 09:43:32 +12:00
title: 'Follow the Tiny Gang adventures on Instagram!',
2026-05-02 08:26:18 +12:00
label: '@goodwalk.nz',
href: 'https://www.instagram.com/goodwalk.nz/',
variant: 'green',
external: true
},
footer: {
brandText: 'Professional Dog Walking Services\nAuckland Central',
navigationLinks: [
{ label: 'Home', href: '/' },
{ label: 'Pack Walks', href: '/pack-walks' },
{ label: '1:1 Walks', href: '/dog-walking' },
{ label: 'Puppy Visits', href: '/puppy-visits' },
{ label: 'Our Pricing', href: '/our-pricing' },
{ label: 'About Us', href: '/about' },
{ label: 'Contact Us', href: '/contact-us' }
2026-05-02 08:26:18 +12:00
],
contactLinks: [
2026-05-03 11:49:59 +12:00
{ label: 'Book a Meet & Greet', href: '/contact-us' },
2026-05-02 08:26:18 +12:00
{ label: 'Instagram', href: 'https://www.instagram.com/goodwalk.nz/', external: true },
{ label: 'Google Reviews', href: 'https://g.page/r/CUsvrWPhkYrAEB0', external: true }
],
copyright: '© 2026 Goodwalk',
email: 'info@goodwalk.co.nz',
phone: '(022) 642 1011'
}
};