From 6d021e05ea4fa0b6e7c9ed1aac3503782c9c8625 Mon Sep 17 00:00:00 2001 From: ponzischeme89 Date: Wed, 6 May 2026 16:47:15 +1200 Subject: [PATCH] Testimonials fixes --- src/lib/components/TestimonialsSection.svelte | 3 +-- src/lib/content/homepage.ts | 4 ++-- src/lib/styles/responsive.css | 11 +++++++---- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/lib/components/TestimonialsSection.svelte b/src/lib/components/TestimonialsSection.svelte index a9c1aac..ef5b85e 100644 --- a/src/lib/components/TestimonialsSection.svelte +++ b/src/lib/components/TestimonialsSection.svelte @@ -7,8 +7,7 @@ export let testimonials: TestimonialContent[]; export let heading = 'Why people choose us!'; - export let blurb = - 'Busy parents get peace of mind. Dogs come home tired and happy. See why 30+ Auckland families trust the Tiny Gang — follow along on Instagram for daily adventures, wagging tails and the odd zoomie.'; + export let blurb = 'Busy parents get peace of mind. Dogs come home tired and happy. See why 30+ Auckland families trust the Tiny Gang — follow along on Instagram for daily adventures, wagging tails and the odd zoomie.'; export let instagramHref = 'https://www.instagram.com/goodwalk.nz/'; export let instagramLabel = 'goodwalk.nz'; diff --git a/src/lib/content/homepage.ts b/src/lib/content/homepage.ts index 886829c..351ec93 100644 --- a/src/lib/content/homepage.ts +++ b/src/lib/content/homepage.ts @@ -21,7 +21,7 @@ export const homepageContent: HomePageContent = { { label: 'About Us', href: '/about' }, { label: 'Contact Us', href: '/contact-us' } ], - cta: { label: 'Book a Meet & Greet', href: '/contact-us', variant: 'yellow' }, + cta: { label: 'Contact Us', href: '/contact-us', variant: 'yellow' }, instagram: { href: 'https://www.instagram.com/goodwalk.nz/', external: true }, megaMenuServices: [ { icon: 'fas fa-paw', label: 'Pack Walks', description: 'Tiny Gang outdoor adventures', href: '/pack-walks' }, @@ -34,7 +34,7 @@ export const homepageContent: HomePageContent = { title: 'Unleashing Fun in', highlight: "Your Dog's Day!", mobileTitle: "Unleashing Fun in\nYour Dog's Day!", - subtitle: 'Trusted, on-time dog walking across Auckland Central — pack walks, 1:1 walks, and puppy visits.', + subtitle: "Trusted Auckland Central dog walking — small packs, solo adventures, and puppy visits from a team that knows your dog by name", primaryCta: { label: 'Book a Meet & Greet', href: '#newlead', variant: 'yellow' }, secondaryCta: { label: 'Explore our services →', href: '#services', variant: 'outline' }, imageUrl: '/images/auckland-dog-walking-happy-dog-hero.png', diff --git a/src/lib/styles/responsive.css b/src/lib/styles/responsive.css index 285b424..e565970 100644 --- a/src/lib/styles/responsive.css +++ b/src/lib/styles/responsive.css @@ -601,14 +601,17 @@ } .hero-buttons { - flex-direction: column; - gap: 12px; + flex-direction: row; + gap: 8px; padding-right: 0; } .hero-buttons .btn { - width: 100%; + flex: 1 1 0; + width: 0; margin-right: 0 !important; - padding: 16px 24px; + padding: 14px 10px; + font-size: 13px; + line-height: 1.2; } }