From 06932dbdbbf8378be3db055b4e9f4f21ca9fdef9 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 07:15:41 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ab527d4..58f3a39 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import FaqDouble from '@/components/sections/faq/FaqDouble'; import ContactFaq from '@/components/sections/contact/ContactFaq'; import FooterCard from '@/components/sections/footer/FooterCard'; -import { MapPin, Star, Users, Home, ArrowRight, Zap, Phone, Facebook, MessageCircle, Mail } from "lucide-react"; +import { MapPin, Star, Users, Home, ArrowRight, Zap, Phone, Facebook, MessageCircle, Mail, Sparkles } from "lucide-react"; export default function LandingPage() { return ( @@ -90,11 +90,11 @@ export default function LandingPage() { buttonHref: "#booking" }, { - title: "Deluxe Room", description: "Spacious room with premium amenities, smart TV, and enhanced comfort. Ideal for guests seeking extra luxury.", imageSrc: "http://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111483.jpg?_wi=1", imageAlt: "Deluxe hotel room", buttonIcon: ArrowRight, + title: "Deluxe Room", description: "Spacious room with premium amenities, smart TV, and enhanced comfort. Ideal for guests seeking extra luxury.", imageSrc: "http://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111483.jpg", imageAlt: "Deluxe hotel room", buttonIcon: ArrowRight, buttonHref: "#booking" }, { - title: "Family Room", description: "Large family suite with multiple beds, extra space, and family-friendly amenities. Great for groups and families.", imageSrc: "http://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111483.jpg?_wi=2", imageAlt: "Family hotel room", buttonIcon: ArrowRight, + title: "Family Room", description: "Large family suite with multiple beds, extra space, and family-friendly amenities. Great for groups and families.", imageSrc: "http://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111483.jpg", imageAlt: "Family hotel room", buttonIcon: ArrowRight, buttonHref: "#booking" }, { @@ -255,12 +255,3 @@ export default function LandingPage() { ); } - -// Icon imports - defining Sparkles inline since it's used in tagIcon -function Sparkles(props: React.SVGProps) { - return ( - - - - ); -}