From 7edd4c7f9dbf3f05a05b7bf911a413bcf3d7d1bd Mon Sep 17 00:00:00 2001 From: ponzischeme89 Date: Wed, 6 May 2026 23:55:31 +1200 Subject: [PATCH] AboutUs rewrite --- src/lib/components/AboutPage.svelte | 835 ++++++++++++++++++++++++---- src/lib/content/about.ts | 20 +- src/lib/content/homepage.ts | 30 + 3 files changed, 775 insertions(+), 110 deletions(-) diff --git a/src/lib/components/AboutPage.svelte b/src/lib/components/AboutPage.svelte index d98dfb2..e77edac 100644 --- a/src/lib/components/AboutPage.svelte +++ b/src/lib/components/AboutPage.svelte @@ -1,63 +1,254 @@
-
+

{pageContent.title}

- {#each pageContent.sections as section} -
-
-
-

{section.title}

- {#each section.body as paragraph} -

{paragraph}

- {/each} +
+
+
+
+ About GoodWalk +

{leadSection.title}

+

{leadSection.body[0]}

+ +
+ {#each storyPillars as pillar} + {pillar} + {/each} +
-
+
{section.imageAlt}
+
+
+ +
+
+
+ {#each careStripItems as item, index} + + + {item.label} + + {/each} +
+
+
+ +
+
+
+
+ Our story +

{leadSection.body[1]}

+
+ + +
+
+
+ + {#each storySections as section, index} +
+
+
+
+ 0{index + 2} +

{section.title}

+ {#each section.body as paragraph} +

{paragraph}

+ {/each} +
+ +
+ {section.imageAlt} +
+
+
{/each} +
+
+
+ Experience and safety +

Practical trust signals, not filler.

+
+ +
+ {#each trustItems as item} +
+ +
+

{item.title}

+

{item.body}

+
+
+ {/each} +
+
+
+ +
+
+
+ How we work +

Clear standards, calm handling, and a routine dogs can settle into.

+
+ +
+ {#each workflowItems as item, index} +
+
0{index + 1}
+ +

{item.title}

+

{item.body}

+
+ {/each} +
+
+
+ + {#if proofItems.length > 0} +
+
+
+ Proof +

Dogs who drag their people to the gate tell the story better than we can.

+
+ +
+ {#each proofItems as item, index} +
+

“{item.quote}”

+

{item.reviewer} · {item.detail}

+
+ {/each} +
+
+
+ {/if} +
-
-

{pageContent.contact.title}

-
+
+
+ Get in touch +

{pageContent.contact.title}

+

Tell us a little about your dog and we’ll help you figure out the right fit.

+
+ +
@@ -67,7 +258,9 @@