From c5253cf8282dd70d4d8d930a34131cd8a42008fa Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 2 May 2026 08:21:11 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 307 +++++++++-------------------------------------- 1 file changed, 55 insertions(+), 252 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 50d571e..951eb50 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,22 +31,10 @@ export default function LandingPage() { @@ -177,24 +88,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} features={[ - { - id: "f1", - title: "Hand-Feeding", - description: "Get up close and personal. You can feed the giraffes pellets directly from your hand.", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-giraffe-wild_23-2151708841.jpg?_wi=2", - }, - { - id: "f2", - title: "Nature Trails", - description: "Enjoy a peaceful stroll through our indigenous forest area, perfect for nature enthusiasts.", - imageSrc: "http://img.b2bpic.net/free-photo/wild-stream-forest_23-2147670098.jpg?_wi=2", - }, - { - id: "f3", - title: "Photography", - description: "The perfect backdrop for stunning wildlife photos you won't get anywhere else.", - imageSrc: "http://img.b2bpic.net/free-photo/world-photography-day-celebration_23-2151644777.jpg?_wi=2", - }, + { id: "f1", title: "Hand-Feeding", description: "Get up close and personal. You can feed the giraffes pellets directly from your hand.", tag: "Popular", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-giraffe-wild_23-2151708841.jpg" }, + { id: "f2", title: "Nature Trails", description: "Enjoy a peaceful stroll through our indigenous forest area, perfect for nature enthusiasts.", tag: "Relaxing", imageSrc: "http://img.b2bpic.net/free-photo/wild-stream-forest_23-2147670098.jpg" }, + { id: "f3", title: "Photography", description: "The perfect backdrop for stunning wildlife photos you won't get anywhere else.", tag: "Scenic", imageSrc: "http://img.b2bpic.net/free-photo/world-photography-day-celebration_23-2151644777.jpg" } ]} title="What to Expect" description="From hand-feeding to forest walks, here’s why our visitors love the Centre." @@ -205,25 +101,11 @@ export default function LandingPage() { @@ -270,60 +136,16 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} testimonials={[ - { - id: "1", - name: "Jane Doe", - role: "Traveler", - company: "Global Explorers", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/african-children-enjoying-life_23-2151447874.jpg", - }, - { - id: "2", - name: "John Smith", - role: "Photographer", - company: "Creative Lens", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-women-taking-photos-with-camera_23-2149516073.jpg", - }, - { - id: "3", - name: "Alice Wang", - role: "Marketing", - company: "Tech Startup", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/group-magnificent-lions-gravel-road-surrounded-by-grassy-fields-trees_181624-6501.jpg", - }, - { - id: "4", - name: "Bob Brown", - role: "Teacher", - company: "City Schools", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/woman-taking-break-from-running_23-2149157108.jpg", - }, - { - id: "5", - name: "Charlie Day", - role: "Explorer", - company: "Nature Society", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-cute-giraffe-front-trees-with-green-leaves_181624-16895.jpg", - }, + { id: "1", name: "Jane Doe", role: "Traveler", company: "Global Explorers", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/african-children-enjoying-life_23-2151447874.jpg" }, + { id: "2", name: "John Smith", role: "Photographer", company: "Creative Lens", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-women-taking-photos-with-camera_23-2149516073.jpg" }, + { id: "3", name: "Alice Wang", role: "Marketing", company: "Tech Startup", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/group-magnificent-lions-gravel-road-surrounded-by-grassy-fields-trees_181624-6501.jpg" }, + { id: "4", name: "Bob Brown", role: "Teacher", company: "City Schools", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-taking-break-from-running_23-2149157108.jpg" }, + { id: "5", name: "Charlie Day", role: "Explorer", company: "Nature Society", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-cute-giraffe-front-trees-with-green-leaves_181624-16895.jpg" } ]} kpiItems={[ - { - value: "4.8/5", - label: "Average Rating", - }, - { - value: "10K+", - label: "Visitors Yearly", - }, - { - value: "100%", - label: "Memorable Moments", - }, + { value: "4.8/5", label: "Average Rating" }, + { value: "10K+", label: "Visitors Yearly" }, + { value: "100%", label: "Memorable Moments" } ]} title="Visitor Stories" description="Hear from our guests who experienced the wonder of the giraffes." @@ -333,9 +155,7 @@ export default function LandingPage() {
-- 2.49.1