From 338fb19485902fe32026e76960e4b18345147e2b Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 09:51:15 +0000 Subject: [PATCH 1/2] Update src/app/bookings/page.tsx --- src/app/bookings/page.tsx | 52 ++++++++++----------------------------- 1 file changed, 13 insertions(+), 39 deletions(-) diff --git a/src/app/bookings/page.tsx b/src/app/bookings/page.tsx index 902b846..cc1dac0 100644 --- a/src/app/bookings/page.tsx +++ b/src/app/bookings/page.tsx @@ -7,7 +7,7 @@ import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwen import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -export default function LandingPage() { +export default function BookingsPage() { return ( @@ -55,19 +43,13 @@ export default function LandingPage() { description="Choose your path." features={[ { - id: "t1", - title: "City Tour", - author: "Guide", - description: "Walk through history.", - imageSrc: "http://img.b2bpic.net/free-photo/gothic-vault-decorative-paintings-architectural-details_169016-68651.jpg", + id: "t1", title: "City Tour", author: "Guide", description: "Walk through history.", tags: ["Guided", "Cultural"], + imageSrc: "http://img.b2bpic.net/free-photo/gothic-vault-decorative-paintings-architectural-details_169016-68651.jpg" }, { - id: "t2", - title: "Mountain Hike", - author: "Guide", - description: "Nature views.", - imageSrc: "http://img.b2bpic.net/free-photo/islamic-mosque-blue-ornament_1085-534.jpg", - }, + id: "t2", title: "Mountain Hike", author: "Guide", description: "Nature views.", tags: ["Nature", "Adventure"], + imageSrc: "http://img.b2bpic.net/free-photo/islamic-mosque-blue-ornament_1085-534.jpg" + } ]} /> @@ -75,9 +57,7 @@ export default function LandingPage() {
@@ -85,14 +65,8 @@ export default function LandingPage() { From 5adbf51f558603b4788398620edbfda95bc4aeb4 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 09:51:15 +0000 Subject: [PATCH 2/2] Update src/app/destinations/page.tsx --- src/app/destinations/page.tsx | 66 +++++++++-------------------------- 1 file changed, 17 insertions(+), 49 deletions(-) diff --git a/src/app/destinations/page.tsx b/src/app/destinations/page.tsx index 8a4f77c..6574cbd 100644 --- a/src/app/destinations/page.tsx +++ b/src/app/destinations/page.tsx @@ -7,7 +7,7 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; -export default function LandingPage() { +export default function DestinationsPage() { return ( @@ -55,19 +43,13 @@ export default function LandingPage() { description="Visit historic sites." features={[ { - id: "a1", - title: "Mosque", - author: "Local", - description: "Ancient mosque.", - imageSrc: "http://img.b2bpic.net/free-photo/islamic-mosque-ornamental-tiles_1085-533.jpg", + id: "a1", title: "Mosque", author: "Local", description: "Ancient mosque.", tags: ["Historic", "Architecture"], + imageSrc: "http://img.b2bpic.net/free-photo/islamic-mosque-ornamental-tiles_1085-533.jpg" }, { - id: "a2", - title: "Tile Work", - author: "Local", - description: "Beautiful tiles.", - imageSrc: "http://img.b2bpic.net/free-photo/white-arabesque-lantern-tile-texture_84443-73019.jpg", - }, + id: "a2", title: "Tile Work", author: "Local", description: "Beautiful tiles.", tags: ["Art", "Cultural"], + imageSrc: "http://img.b2bpic.net/free-photo/white-arabesque-lantern-tile-texture_84443-73019.jpg" + } ]} /> @@ -82,21 +64,13 @@ export default function LandingPage() { description="Hear from guests." testimonials={[ { - id: "v1", - name: "A", - role: "User", - company: "Co", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/gorgeous-woman-looking-smiling-hills-white-coat_176474-4920.jpg", + id: "v1", name: "A", role: "User", company: "Co", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/gorgeous-woman-looking-smiling-hills-white-coat_176474-4920.jpg" }, { - id: "v2", - name: "B", - role: "User", - company: "Co", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/woman-throwing-away-her-mask-gloves-take-off-remove-mask-from-her-face-end-pandemic-coronavirus-concept-pollen-allergy-spring_657921-506.jpg", - }, + id: "v2", name: "B", role: "User", company: "Co", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/woman-throwing-away-her-mask-gloves-take-off-remove-mask-from-her-face-end-pandemic-coronavirus-concept-pollen-allergy-spring_657921-506.jpg" + } ]} /> @@ -104,14 +78,8 @@ export default function LandingPage() {