89 lines
5.3 KiB
TypeScript
89 lines
5.3 KiB
TypeScript
import type { AboutPageContent } from '$lib/types';
|
||
|
||
export const aboutPageContent: AboutPageContent = {
|
||
title: 'About Us',
|
||
sections: [
|
||
{
|
||
eyebrow: 'Our story',
|
||
title: 'Who we are',
|
||
body: [
|
||
"Goodwalk is built around Alessandra — who started this because she couldn't find a walker she actually trusted, and hasn't stopped showing up the same way since. She walks every dog herself, posts updates to Instagram so you can see exactly what your dog is up to, and has built relationships with some dogs from as young as ten weeks old. Thirty-plus five-star Google reviews later, the feedback keeps saying the same thing: the dogs adore her, and their owners finally stop worrying.",
|
||
"We specialise in small and medium dogs because we understand them — not as a category, but as actual dogs with specific needs, specific quirks, and specific ways they fall apart in the wrong environment. The pace of a walk matters. The size of the group matters. The temperament of the other dogs matters. That's why we built a service around them, not just one that fits them in."
|
||
],
|
||
imageUrl: '/images/auckland-pack-walk-small-dogs-group.jpg',
|
||
imageAlt: "Small dogs from Goodwalk's Tiny Gang pack walk sitting together in an Auckland park"
|
||
},
|
||
{
|
||
eyebrow: 'What we stand for',
|
||
title: 'How we do things',
|
||
body: [
|
||
"Every walk you've seen across our pages — the Tiny Gang outings, the one-on-ones, the puppy visits — runs on the same principles. Calm handling, positive reinforcement, and a walker who already knows your dog. That's not a promise we make at signup. It's how every single walk actually goes.",
|
||
"We keep packs small because we mean it when we say your dog gets real attention. We cover pickup and drop-off because your day shouldn't have to work around us. And every walker holds pet first aid certification and public liability insurance — because the dogs in our care aren't just bookings, they're the whole reason we do this."
|
||
],
|
||
imageUrl: '/images/auckland-dog-group-outing.jpg',
|
||
imageAlt: 'Goodwalk dogs enjoying a group outing in Auckland',
|
||
reverse: true,
|
||
accent: 'gradient'
|
||
},
|
||
{
|
||
eyebrow: 'Meet the founder',
|
||
title: 'The heart of Goodwalk',
|
||
body: [
|
||
"Alessandra started Goodwalk because she couldn't find a walker she actually trusted with Maya. So she became one. Italian-born and Auckland Central-based, she leads every walk herself — not because she has to, but because handing that off was never something she was willing to do. The dogs she walks have her full attention. Their owners have her number.",
|
||
"Maya is a Cavalier King Charles cross Shih Tzu, and the reason small dogs sit at the centre of everything Goodwalk does. She is opinionated, dramatic when it rains, and completely impossible to ignore on a walk. She is also the best argument we have for why small dogs deserve a service built specifically around them — not just accommodated by one."
|
||
],
|
||
imageUrl: '/images/founder-image-aless-goodwalk.jpg',
|
||
imageAlt: 'Alessandra, founder of Goodwalk Auckland',
|
||
accent: 'founder'
|
||
}
|
||
],
|
||
faqTitle: 'Questions about Goodwalk',
|
||
faqs: [
|
||
{
|
||
question: 'Who actually walks my dog?',
|
||
answer:
|
||
'Alessandra, the founder, personally leads every walk. We are not a platform or an agency — you will always know who is at the door.'
|
||
},
|
||
{
|
||
question: 'Why do you specialise in small dogs?',
|
||
answer:
|
||
'Small dogs have different energy levels, social dynamics, and handling needs compared to larger breeds. Alessandra is a small dog owner herself, and Goodwalk was built specifically around what those dogs need — not adapted from a one-size-fits-all model.'
|
||
},
|
||
{
|
||
question: 'How big are your packs?',
|
||
answer:
|
||
'We keep Tiny Gang packs to 4–8 dogs. Smaller packs mean better supervision, calmer outings, and dogs that actually come home settled rather than overstimulated.'
|
||
},
|
||
{
|
||
question: "What is a Meet & Greet?",
|
||
answer:
|
||
'A Meet & Greet is a free, no-obligation introduction where Alessandra meets you and your dog in person. It is a chance to ask questions, see how your dog responds, and decide if Goodwalk is the right fit — with no pressure either way.'
|
||
},
|
||
{
|
||
question: 'What suburbs do you cover?',
|
||
answer:
|
||
'We cover most of Auckland Central including Ponsonby, Grey Lynn, Mt Eden, Kingsland, Morningside, Sandringham, Mt Albert, Mt Roskill, Herne Bay, Freemans Bay, Pt Chevalier, Avondale, Eden Terrace, Balmoral, and more. If you are nearby and unsure, just ask.'
|
||
},
|
||
{
|
||
question: 'Are your walkers insured and first-aid trained?',
|
||
answer:
|
||
'Yes. All walkers hold public liability insurance and a current pet first aid certificate. Your dog is covered from pickup to drop-off.'
|
||
},
|
||
{
|
||
question: 'What does onboarding look like?',
|
||
answer:
|
||
'Every new dog goes through a screening process that includes at minimum two assessment walks. This lets us make sure the pack is the right fit for your dog, and your dog is the right fit for the pack.'
|
||
}
|
||
],
|
||
contact: {
|
||
title: "Let's get started!",
|
||
email: 'info@goodwalk.co.nz',
|
||
phone: '(022) 642 1011',
|
||
cta: {
|
||
label: 'Book a Meet & Greet',
|
||
href: '/contact-us',
|
||
variant: 'yellow'
|
||
}
|
||
}
|
||
};
|