From 4dc92c364a9983b794759f0a0f77e31b3d3a7661 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 14:41:23 +0000 Subject: [PATCH 1/2] Add src/app/booking/page.tsx --- src/app/booking/page.tsx | 63 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 src/app/booking/page.tsx diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx new file mode 100644 index 0000000..ea01123 --- /dev/null +++ b/src/app/booking/page.tsx @@ -0,0 +1,63 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function BookingPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 6bc851a32c125196fa2da9cd7a5a9565a4d9bf0d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 14:41:24 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 190 +++++++++++++++-------------------------------- 1 file changed, 58 insertions(+), 132 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6e42e30..2120d40 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FaqBase from '@/components/sections/faq/FaqBase'; import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; import FooterSimple from '@/components/sections/footer/FooterSimple'; @@ -33,25 +33,15 @@ export default function LandingPage() { @@ -60,67 +50,44 @@ export default function LandingPage() {
@@ -144,19 +111,13 @@ export default function LandingPage() { features={[ { icon: Droplets, - title: "Relaxing Poolside", - description: "Unwind in our serene outdoor swimming area, perfect for sunny Cairo afternoons.", - }, + title: "Relaxing Poolside", description: "Unwind in our serene outdoor swimming area, perfect for sunny Cairo afternoons."}, { icon: Utensils, - title: "Gourmet Dining", - description: "Experience culinary excellence at our onsite restaurants offering international flavors.", - }, + title: "Gourmet Dining", description: "Experience culinary excellence at our onsite restaurants offering international flavors."}, { icon: Activity, - title: "Fitness & Wellness", - description: "Stay fit in our fully equipped gym or rejuvenate in our tranquil wellness facilities.", - }, + title: "Fitness & Wellness", description: "Stay fit in our fully equipped gym or rejuvenate in our tranquil wellness facilities."}, ]} title="World-Class Amenities" description="Indulge in an array of services designed for ultimate relaxation and productivity." @@ -170,23 +131,14 @@ export default function LandingPage() { useInvertedBackground={true} metrics={[ { - id: "m1", - icon: Star, - title: "Guest Rating", - value: "4.3/5", - }, + id: "m1", icon: Star, + title: "Guest Rating", value: "4.3/5"}, { - id: "m2", - icon: MapPin, - title: "Attractions Nearby", - value: "15+", - }, + id: "m2", icon: MapPin, + title: "Attractions Nearby", value: "15+"}, { - id: "m3", - icon: Clock, - title: "Years of Experience", - value: "20+", - }, + id: "m3", icon: Clock, + title: "Years of Experience", value: "20+"}, ]} title="Excellence in Hospitality" description="Our commitment to guest satisfaction is reflected in our numbers." @@ -201,25 +153,15 @@ export default function LandingPage() { author="Sarah Miller" avatars={[ { - src: "http://img.b2bpic.net/free-photo/bellhop-offering-services-woman-lounge-area-waiting-room-check-seaside-hotel-tourist-sitting-couch-talking-hotel-concierge-summer-clothes-handheld-shot_482257-67916.jpg", - alt: "portrait business traveler smiling", - }, + src: "http://img.b2bpic.net/free-photo/bellhop-offering-services-woman-lounge-area-waiting-room-check-seaside-hotel-tourist-sitting-couch-talking-hotel-concierge-summer-clothes-handheld-shot_482257-67916.jpg", alt: "portrait business traveler smiling"}, { - src: "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg", - alt: "professional man smiling portrait", - }, + src: "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg", alt: "professional man smiling portrait"}, { - src: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5287.jpg", - alt: "portrait woman smiling relaxing", - }, + src: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5287.jpg", alt: "portrait woman smiling relaxing"}, { - src: "http://img.b2bpic.net/free-photo/family-hanging-out-jetty_23-2150767911.jpg", - alt: "smiling family portrait hotel", - }, + src: "http://img.b2bpic.net/free-photo/family-hanging-out-jetty_23-2150767911.jpg", alt: "smiling family portrait hotel"}, { - src: "http://img.b2bpic.net/free-photo/happy-young-african-american-guy-using-digital-tablet-wireless-headphones-while-sitting-hotel-lounge-area-looking-webcam-smiling-tourist-talking-by-video-with-family-while-travelling_482257-65023.jpg", - alt: "man professional casual portrait", - }, + src: "http://img.b2bpic.net/free-photo/happy-young-african-american-guy-using-digital-tablet-wireless-headphones-while-sitting-hotel-lounge-area-looking-webcam-smiling-tourist-talking-by-video-with-family-while-travelling_482257-65023.jpg", alt: "man professional casual portrait"}, ]} ratingAnimation="slide-up" avatarsAnimation="blur-reveal" @@ -231,12 +173,7 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={true} names={[ - "TravelChoice", - "GlobalHospitality", - "BookingPartner", - "CairoTourism", - "GreenStayAward", - ]} + "TravelChoice", "GlobalHospitality", "BookingPartner", "CairoTourism", "GreenStayAward"]} title="Trusted by Travelers Worldwide" description="Recognized for excellence and sustainability in the global hospitality sector." /> @@ -248,20 +185,11 @@ export default function LandingPage() { useInvertedBackground={false} faqs={[ { - id: "f1", - title: "What are the check-in/check-out times?", - content: "Check-in time is 2:00 PM and check-out time is 12:00 PM.", - }, + id: "f1", title: "What are the check-in/check-out times?", content: "Check-in time is 2:00 PM and check-out time is 12:00 PM."}, { - id: "f2", - title: "Is Wi-Fi available for free?", - content: "Yes, free Wi-Fi is provided for all our guests throughout the property.", - }, + id: "f2", title: "Is Wi-Fi available for free?", content: "Yes, free Wi-Fi is provided for all our guests throughout the property."}, { - id: "f3", - title: "Is breakfast included in the booking?", - content: "We offer various rates, some of which include daily complimentary breakfast. Please check your booking details.", - }, + id: "f3", title: "Is breakfast included in the booking?", content: "We offer various rates, some of which include daily complimentary breakfast. Please check your booking details."}, ]} title="Frequently Asked Questions" description="Answers to common questions regarding your upcoming stay." @@ -270,17 +198,25 @@ export default function LandingPage() {
-
@@ -288,29 +224,19 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1