From 455abb9411ad0a13fee64e7056758cccb6695bd1 Mon Sep 17 00:00:00 2001 From: Calum Muir Date: Sat, 23 May 2026 22:36:50 +0200 Subject: [PATCH] feat: add horse first-person statements to about page profiles MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace placeholder one-liners with full first-person quotes from the 2026 Horse Statements document for Breagha, Harley, Connolly, Puzzle, and the Minis (Orris, Bru & Sam). - Section heading updated to 'Meet the horses — In their own words.' - Cards redesigned: taller photo (220px), green left-border quote block in italic Merriweather, details in small caps green text - Minis added as a group entry with shared card - Memorial horses (Lady Suede, Wispa) moved to a separate 'Remembered fondly' subsection with grayscale treatment - Updated details/ages/breeds to match the document Co-Authored-By: Claude Sonnet 4.6 --- src/pages/about.astro | 127 +++++++++++++++++++++++++++++++++++------- 1 file changed, 107 insertions(+), 20 deletions(-) diff --git a/src/pages/about.astro b/src/pages/about.astro index 99de298..1f1c74a 100644 --- a/src/pages/about.astro +++ b/src/pages/about.astro @@ -21,12 +21,57 @@ const stats = [ ]; const ponies = [ - { name: "Breagh", img: "/Breagh-bc8e70e8-2880w.webp", details: "13.2hh · Mare · 15 yo", desc: "She is very willing and independent", pos: "50% 50%" }, - { name: "Connolly", img: "/connolly-73f3e69f-2880w-2.webp", details: "14.2hh · Gelding · 16 yo", desc: "A true gentleman and everyone's friend", pos: "50% 50%" }, - { name: "Harley", img: "/Harley-6ece9eca-2880w.webp", details: "15.3hh · Gelding · 15 yo", desc: "He is the boss but very obliging", pos: "50% 50%" }, - { name: "Puzzle", img: "/puzzle-5de6e325-2880w.webp", details: "15.3hh · Mare · 14 yo", desc: "She is very sensitive and gentle", pos: "50% 50%" }, - { name: "Lady Suede", img: "/Suede-2880w.webp", details: "13hh · Mare · 23 yo", desc: "RIP October 2024", pos: "50% 50%", memorial: true }, - { name: "Wispa", img: "/Wispa-2880w.webp", details: "14.2hh · Gelding · 15 yo", desc: "RIP 2025", pos: "50% 20%", memorial: true }, + { + name: "Breagha", + img: "/Breagh-bc8e70e8-2880w.webp", + details: "13hh · Skewbald cob mare · 19 yo", + pos: "50% 40%", + quote: "I am the most recent arrival at RDA, part of the herd for the past three and a half years. I take my job very seriously and am careful and steady with riders who are gaining confidence while enjoying a faster walk and trot from time to time. People say that I make them feel calm and happy — that makes me very happy too.", + }, + { + name: "Harley", + img: "/Harley-6ece9eca-2880w.webp", + details: "15.3hh · Skewbald cob/Clydesdale · 17 yo", + pos: "50% 35%", + quote: "I like to think that I am good at my job. I stand quietly at the mounting block and always try to do what I have been asked as well as I can. After lessons, nothing makes me more excited than searching for the odd piece of carrot or apple scattered about the field — that is when I do my happy prance about!", + }, + { + name: "Connolly", + img: "/connolly-73f3e69f-2880w-2.webp", + details: "15.1hh · Piebald cob gelding · 18 yo", + pos: "50% 30%", + quote: "People say that I am a calm, sensible boy who likes to tackle life at a leisurely pace while at work. I will stand forever to be groomed, often relaxing so much that I look like I have fallen asleep. I have a very thick mane and love to give my head a cheeky little shake just when it is all lying nice and flat!", + }, + { + name: "Puzzle", + img: "/puzzle-5de6e325-2880w.webp", + details: "15.1hh · Skewbald cob mare · 16 yo", + pos: "50% 35%", + quote: "Everyone says that I am a kind, loving girl. I enjoy being groomed and pampered, and I like to be around people who are calm, quiet and patient — that fills me with confidence. After work I like to wander slowly round the field searching for the tastiest patches of grass, or a nice dusty place to have a roll!", + }, + { + name: "The Minis", + img: "/alineofponies-1920w.webp", + details: "Orris · Bru · Sam — Miniature Shetland ponies", + pos: "50% 60%", + quote: "We are better known as the minis! People often like to get to know us first if they are nervous about meeting the bigger horses. We might be small but make up for it with our cheeky personalities — and our ability to know when the electric fence has been switched off.", + }, + { + name: "Lady Suede", + img: "/Suede-2880w.webp", + details: "13hh · Mare · 23 yo", + pos: "50% 50%", + memorial: true, + memorialNote: "RIP October 2024", + }, + { + name: "Wispa", + img: "/Wispa-2880w.webp", + details: "14.2hh · Gelding · 15 yo", + pos: "50% 20%", + memorial: true, + memorialNote: "RIP 2025", + }, ]; const testimonials = [ @@ -220,39 +265,81 @@ const testimonials = [ - +

- Meet the ponies + Meet the horses

-
-
- {ponies.map((pony) => ( -
-
+

+ In their own words. +

+

+ Highland Group RDA are very proud of the contribution made by our fantastic team of horses. We'll let them introduce themselves. +

+ + +
+ {ponies.filter(p => !p.memorial).map((pony) => ( +
+
{pony.name}
-
-

+
+

{pony.name}

-

+

{pony.details}

-

- {pony.desc} -

+
+

+ "{pony.quote}" +

+

))}
+ + +
+

+ Remembered fondly +

+
+ {ponies.filter(p => p.memorial).map((pony) => ( +
+
+ {pony.name} +
+
+

+ {pony.name} +

+

+ {pony.details} +

+

+ {pony.memorialNote} +

+
+
+ ))} +
+