diff --git a/src/app/page.tsx b/src/app/page.tsx index d2650d8..ed1fdf1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,14 +31,10 @@ export default function LandingPage() { @@ -74,12 +63,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - title: "High-Speed WiFi", description: "Stay connected with complimentary high-speed internet access in all rooms.", imageSrc: "http://img.b2bpic.net/free-photo/worker-with-laptop-three-applications_1134-309.jpg"}, - { - title: "Satellite Entertainment", description: "Relax with your favorite satellite channels on modern smart TVs.", imageSrc: "http://img.b2bpic.net/free-photo/amused-beautiful-young-woman-pajamas-watching-tv-night-happy-dog_482257-30775.jpg"}, - { - title: "24/7 Service", description: "Our front desk and room service are available around the clock.", imageSrc: "http://img.b2bpic.net/free-photo/employees-welcoming-older-people_482257-81630.jpg"}, + { title: "High-Speed WiFi", description: "Stay connected with complimentary high-speed internet access in all rooms.", imageSrc: "http://img.b2bpic.net/free-photo/worker-with-laptop-three-applications_1134-309.jpg" }, + { title: "Satellite Entertainment", description: "Relax with your favorite satellite channels on modern smart TVs.", imageSrc: "http://img.b2bpic.net/free-photo/amused-beautiful-young-woman-pajamas-watching-tv-night-happy-dog_482257-30775.jpg" }, + { title: "24/7 Service", description: "Our front desk and room service are available around the clock.", imageSrc: "http://img.b2bpic.net/free-photo/employees-welcoming-older-people_482257-81630.jpg" }, ]} title="Premium In-Room Comfort" description="Experience modern amenities designed for your absolute rest and convenience." @@ -104,12 +90,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={true} features={[ - { - title: "Climate Controlled", description: "Every room features air conditioning for your total comfort.", imageSrc: "http://img.b2bpic.net/free-photo/searching-engine-optimizing-seo-browsing-concept_53876-64993.jpg"}, - { - title: "Kitchenette Basics", description: "Rooms include a mini-fridge and microwave for your snacks.", imageSrc: "http://img.b2bpic.net/free-photo/couple-taking-photos-light-movie-projector_23-2149377400.jpg"}, - { - title: "Central Access", description: "Easy access to Achimota Mall and major university areas.", imageSrc: "http://img.b2bpic.net/free-photo/receptionist-providing-luxury-service_482257-78605.jpg"}, + { title: "Climate Controlled", description: "Every room features air conditioning for your total comfort.", imageSrc: "http://img.b2bpic.net/free-photo/searching-engine-optimizing-seo-browsing-concept_53876-64993.jpg" }, + { title: "Kitchenette Basics", description: "Rooms include a mini-fridge and microwave for your snacks.", imageSrc: "http://img.b2bpic.net/free-photo/couple-taking-photos-light-movie-projector_23-2149377400.jpg" }, + { title: "Central Access", description: "Easy access to Achimota Mall and major university areas.", imageSrc: "http://img.b2bpic.net/free-photo/receptionist-providing-luxury-service_482257-78605.jpg" }, ]} title="Convenience at Every Turn" description="We ensure your stay is fully equipped with daily essentials." @@ -123,15 +106,9 @@ export default function LandingPage() { gridVariant="bento-grid" useInvertedBackground={false} metrics={[ - { - id: "m1", value: "8.8", title: "Guest Rating", description: "Excellent booking score", icon: Star, - }, - { - id: "m2", value: "24/7", title: "Staff Support", description: "Always available", icon: Clock, - }, - { - id: "m3", value: "100%", title: "Cleanliness", description: "Room hygiene guaranteed", icon: ShieldCheck, - }, + { id: "m1", value: "8.8", title: "Guest Rating", description: "Excellent booking score", icon: Star }, + { id: "m2", value: "24/7", title: "Staff Support", description: "Always available", icon: Clock }, + { id: "m3", value: "100%", title: "Cleanliness", description: "Room hygiene guaranteed", icon: ShieldCheck }, ]} title="Guest Excellence" description="Highly rated for cleanliness, comfort, and professional service." @@ -142,16 +119,11 @@ export default function LandingPage() { { - window.location.href = `mailto:reservations@texasroyallodge.com?subject=Reservation%20Request&body=Hello,%0A%0AI%20would%20like%20to%20make%20a%20reservation.%20My%20email%20is:%20${email}`; + window.open(`mailto:reservations@texasroyallodge.com?subject=Reservation%20Request&body=Hello,%0A%0AI%20would%20like%20to%20make%20a%20reservation.%20My%20email%20is:%20${email}`, '_blank'); }} /> @@ -197,18 +165,14 @@ export default function LandingPage() { columns={[ { items: [ - { - label: "About", href: "#about"}, - { - label: "Amenities", href: "#amenities"}, + { label: "About", onClick: () => document.getElementById('about')?.scrollIntoView({ behavior: 'smooth' }) }, + { label: "Amenities", onClick: () => document.getElementById('amenities')?.scrollIntoView({ behavior: 'smooth' }) }, ], }, { items: [ - { - label: "Contact", href: "#contact"}, - { - label: "Privacy Policy", href: "#"}, + { label: "Contact", onClick: () => document.getElementById('contact')?.scrollIntoView({ behavior: 'smooth' }) }, + { label: "Privacy Policy", href: "#" }, ], }, ]} @@ -218,4 +182,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file