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

48 lines
2.2 KiB
TypeScript
Raw Normal View History

2026-05-02 08:26:18 +12:00
import type { AboutPageContent } from '$lib/types';
export const aboutPageContent: AboutPageContent = {
title: 'About Us',
sections: [
{
title: 'Who we are',
body: [
"At GoodWalk, we're not your average dog walking service. We're a team of passionate dog lovers dedicated to providing top-notch care for your furry friends. Specialising in small dogs, we understand their unique needs firsthand, being small dog owners ourselves!",
2026-05-02 08:26:18 +12:00
"Our commitment to excellence has quickly made us a leader in Auckland Central's dog-walking scene. From pack walks to one-on-one sessions, we ensure the happiness and well-being of every dog in our care."
],
imageUrl: '/images/auckland-pack-walk-dog.jpg',
imageAlt: 'Dog on a Goodwalk pack walk'
},
{
title: 'Our impact',
body: [
"At GoodWalk, we believe in positive reinforcement training to help your dog thrive in the world. Safety, professionalism, well-being, fun, structure, and compassion are the cornerstones of our business ethos.",
"When you choose GoodWalk, you're choosing a partner who will treat your dog like family, because that's exactly what they are to us."
],
imageUrl: '/images/auckland-dog-group-outing.jpg',
imageAlt: 'Goodwalk dogs enjoying an outing together',
reverse: true,
accent: 'gradient'
},
{
title: 'Meet the team',
body: [
'Behind GoodWalk is Alessandra, an Italian who has a deep passion for dogs. With her love for animals and years of experience, Alessandra leads our team with dedication and expertise, ensuring that every dog receives the love and attention they deserve.',
"And let's not forget about Maya, our marketing manager! A Cavalier King Charles cross Shih Tzu, Maya is full of sass and personality, bringing a touch of charm and flair to everything we do."
],
imageUrl: '/images/goodwalk-dog-walker-alessandra.png',
imageAlt: 'Goodwalk staff member Aless'
}
],
servicesTitle: 'Explore our services',
contact: {
title: "Let's get started!",
email: 'info@goodwalk.co.nz',
phone: '(022) 642 1011',
cta: {
2026-05-03 11:49:59 +12:00
label: 'Book a Meet & Greet',
href: '/contact-us',
2026-05-02 08:26:18 +12:00
variant: 'yellow'
}
}
};