From e36e8bbff236d1db64a1efa81e82774fff502f7b Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 22:34:29 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 37 +++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2387c4c..17b96d1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCar import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterBase from '@/components/sections/footer/FooterBase'; import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; -import { MapPin, Heart, Clock, Sparkles, Users, Zap, Home, ShoppingBag, Building2, Store, Mail } from 'lucide-react'; +import { MapPin, Heart, Clock, Sparkles, Users, Zap, Home, ShoppingBag, Building2, Store, Mail, Phone, MessageCircle } from 'lucide-react'; export default function LandingPage() { return ( @@ -33,7 +33,8 @@ export default function LandingPage() { { name: "الحجم", id: "suites" }, { name: "المزايا", id: "amenities" }, { name: "آراء الضيوف", id: "reviews" }, - { name: "الموقع", id: "location" } + { name: "الموقع", id: "location" }, + { name: "التواصل", id: "contact" } ]} button={{ text: "احجز الآن", href: "#booking" @@ -73,7 +74,7 @@ export default function LandingPage() { title="Why Choose Rimas" description="Experience the perfect blend of luxury, comfort, and genuine hospitality" tag="Our Commitment to Excellence" - tagIcon={undefined} + tagIcon={Sparkles} tagAnimation="slide-up" metrics={[ { @@ -105,7 +106,7 @@ export default function LandingPage() { title="Warm Hospitality Meets Modern Comfort" description="At Rimas, we believe every guest deserves a home away from home. Our dedicated team provides exceptional service with genuine warmth and respect. We've created spaces designed for families to relax, reconnect, and create lasting memories in the comfort of a modern, clean, and welcoming environment." tag="Our Story" - tagIcon={undefined} + tagIcon={Heart} tagAnimation="slide-up" imageSrc="http://img.b2bpic.net/free-photo/woman-looking-orange-tablet_1157-2104.jpg" imageAlt="Professional hotel staff providing warm hospitality service" @@ -139,7 +140,7 @@ export default function LandingPage() { title="Our Suite Collection" description="Choose from a variety of elegantly designed suites and apartments, each offering spacious interiors, fully equipped kitchens, and all the comforts of home." tag="Premium Accommodations" - tagIcon={undefined} + tagIcon={Home} tagAnimation="slide-up" products={[ { @@ -168,7 +169,7 @@ export default function LandingPage() { title="World-Class Amenities" description="Everything you need for a comfortable, convenient stay is right here at Rimas." tag="Premium Facilities" - tagIcon={undefined} + tagIcon={Sparkles} tagAnimation="slide-up" features={[ { @@ -200,7 +201,7 @@ export default function LandingPage() { title="Guest Love Stories" description="Hear from families and travelers who've experienced the Rimas difference." tag="Trusted Reviews" - tagIcon={undefined} + tagIcon={Heart} tagAnimation="slide-up" testimonials={[ { @@ -242,9 +243,9 @@ export default function LandingPage() {
@@ -309,22 +310,22 @@ export default function LandingPage() { { label: "Phone: +968 2424 8888", href: "tel:+96824248888" }, { label: "WhatsApp", href: "https://wa.me/96824248888" }, { label: "Email: info@rimasshotel.com", href: "mailto:info@rimasshotel.com" }, - { label: "Address: Muscat, Oman", href: "#" } + { label: "Address: Muscat, Oman", href: "https://maps.google.com/?q=Muscat+Oman" } ] }, { title: "Follow Us", items: [ - { label: "Facebook", href: "https://facebook.com" }, - { label: "Instagram", href: "https://instagram.com" }, - { label: "Twitter", href: "https://twitter.com" }, - { label: "WhatsApp Channel", href: "https://whatsapp.com" } + { label: "Facebook", href: "https://facebook.com/rimashoteluites" }, + { label: "Instagram", href: "https://instagram.com/rimashotelsuites" }, + { label: "Twitter", href: "https://twitter.com/rimashotel" }, + { label: "WhatsApp Channel", href: "https://whatsapp.com/channel/rimashotel" } ] }, { title: "Legal", items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms & Conditions", href: "#" }, - { label: "Booking Policy", href: "#" }, + { label: "Privacy Policy", href: "#privacy" }, + { label: "Terms & Conditions", href: "#terms" }, + { label: "Booking Policy", href: "#booking-policy" }, { label: "Contact Us", href: "#contact" } ] } -- 2.49.1 From f1448767dc6a14aefef634f3709c9ecc756e2bdc Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 22:34:29 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 3d0e32c..0c8189b 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #ffffff; - --card: #f9f9f9; - --foreground: #000f06e6; - --primary-cta: #0a7039; + --background: #f9f9f9; + --card: #ffffff; + --foreground: #1a1a1a; + --primary-cta: #8b6f47; --primary-cta-text: #ffffff; - --secondary-cta: #f9f9f9; + --secondary-cta: #e8dcc8; --secondary-cta-text: #000f06e6; - --accent: #e2e2e2; - --background-accent: #c4c4c4; + --accent: #c9a961; + --background-accent: #d4af37; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1