Update src/app/page.tsx
This commit is contained in:
264
src/app/page.tsx
264
src/app/page.tsx
@@ -30,30 +30,12 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Suites",
|
||||
id: "suites",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Amenities",
|
||||
id: "amenities",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "reviews",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Suites", id: "suites" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Amenities", id: "amenities" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="The Grove Resort"
|
||||
/>
|
||||
@@ -61,66 +43,28 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
title="Luxury Island Escape in Bahrain"
|
||||
description="Discover exceptional beachfront elegance, private comfort, and unforgettable hospitality at The Grove Resort Bahrain."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/gorgeous-adult-caucasian-blonde-silk-black-pajamas-uses-headphones-sits-balcony-day-leisure-lifestyle-beauty-concept_197531-31178.jpg",
|
||||
alt: "Guest",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portait-cheerful-caucasian-lady-smiles-picture-isolated-dark-blur-background_132075-9602.jpg",
|
||||
alt: "Guest",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-wearing-pajamas-while-sitting-bed_273609-13210.jpg",
|
||||
alt: "Guest",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/successful-young-businessman-formal-outfit-using-tablet_181624-33464.jpg",
|
||||
alt: "Guest",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/beauty-style-fashion-femininity-concept-positive-beautiful-young-european-woman-blue-shirt-looking-camera-with-broad-happy-smile-being-good-mood-kitchen-interior-background_343059-2087.jpg",
|
||||
alt: "Guest",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/gorgeous-adult-caucasian-blonde-silk-black-pajamas-uses-headphones-sits-balcony-day-leisure-lifestyle-beauty-concept_197531-31178.jpg", alt: "Guest" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portait-cheerful-caucasian-lady-smiles-picture-isolated-dark-blur-background_132075-9602.jpg", alt: "Guest" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/woman-wearing-pajamas-while-sitting-bed_273609-13210.jpg", alt: "Guest" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/successful-young-businessman-formal-outfit-using-tablet_181624-33464.jpg", alt: "Guest" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/beauty-style-fashion-femininity-concept-positive-beautiful-young-european-woman-blue-shirt-looking-camera-with-broad-happy-smile-being-good-mood-kitchen-interior-background_343059-2087.jpg", alt: "Guest" },
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Your Stay",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "Explore Suites",
|
||||
href: "#suites",
|
||||
},
|
||||
{ text: "Book Your Stay", href: "#contact" },
|
||||
{ text: "Explore Suites", href: "#suites" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
avatarText="Join 5,000+ happy travelers"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "5-Star Luxury",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Private Beachfront",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "World-Class Spa",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Gourmet Dining",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Family Friendly",
|
||||
},
|
||||
{ type: "text", text: "5-Star Luxury" },
|
||||
{ type: "text", text: "Private Beachfront" },
|
||||
{ type: "text", text: "World-Class Spa" },
|
||||
{ type: "text", text: "Gourmet Dining" },
|
||||
{ type: "text", text: "Family Friendly" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -130,9 +74,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Our Hospitality Promise"
|
||||
description={[
|
||||
"At The Grove Resort, we blend world-class luxury with the warm traditions of Bahraini hospitality.",
|
||||
"Our philosophy is rooted in creating unforgettable memories through personalized service and exclusive beachfront amenities.",
|
||||
]}
|
||||
"At The Grove Resort, we blend world-class luxury with the warm traditions of Bahraini hospitality.", "Our philosophy is rooted in creating unforgettable memories through personalized service and exclusive beachfront amenities."]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -141,27 +83,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
tag: "Relax",
|
||||
title: "Luxury Spa",
|
||||
subtitle: "Wellness",
|
||||
description: "Rejuvenate your senses in our world-class sanctuary.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-asian-women-happy-smile-relax-outdoor-swimming-pool-resort_74190-9353.jpg",
|
||||
},
|
||||
{
|
||||
tag: "Dining",
|
||||
title: "Fine Dining",
|
||||
subtitle: "Culinary",
|
||||
description: "Experience exquisite flavors from our expert chefs.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/luxury-infinity-pool-overlooking-ocean-sunset_23-2151993706.jpg",
|
||||
},
|
||||
{
|
||||
tag: "Active",
|
||||
title: "Fitness Center",
|
||||
subtitle: "Wellness",
|
||||
description: "State-of-the-art equipment for your daily health.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/scenic-view-private-sandy-beach-beach-with-sun-beds-against-sea-mountains-amara-dolce-vita-luxury-hotel-resort-tekirova-kemer-turkey_146671-18733.jpg",
|
||||
},
|
||||
{ tag: "Relax", title: "Luxury Spa", subtitle: "Wellness", description: "Rejuvenate your senses in our world-class sanctuary.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-asian-women-happy-smile-relax-outdoor-swimming-pool-resort_74190-9353.jpg" },
|
||||
{ tag: "Dining", title: "Fine Dining", subtitle: "Culinary", description: "Experience exquisite flavors from our expert chefs.", imageSrc: "http://img.b2bpic.net/free-photo/luxury-infinity-pool-overlooking-ocean-sunset_23-2151993706.jpg" },
|
||||
{ tag: "Active", title: "Fitness Center", subtitle: "Wellness", description: "State-of-the-art equipment for your daily health.", imageSrc: "http://img.b2bpic.net/free-photo/scenic-view-private-sandy-beach-beach-with-sun-beds-against-sea-mountains-amara-dolce-vita-luxury-hotel-resort-tekirova-kemer-turkey_146671-18733.jpg" },
|
||||
]}
|
||||
title="Resort Amenities"
|
||||
description="Indulge in an array of world-class facilities meticulously crafted for your absolute comfort."
|
||||
@@ -175,48 +99,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "s1",
|
||||
name: "Royal Suite",
|
||||
price: "$1,200",
|
||||
variant: "Premium",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/scenic-view-sandy-beach-beach-with-sun-beds-umbrellas-open-against-sea-mountains-hotel-resort-tekirova-kemer-turkey_146671-18877.jpg",
|
||||
},
|
||||
{
|
||||
id: "s2",
|
||||
name: "Ocean View Villa",
|
||||
price: "$950",
|
||||
variant: "Exclusive",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-modern-luxury-bedroom-suite-bathroom_105762-1945.jpg",
|
||||
},
|
||||
{
|
||||
id: "s3",
|
||||
name: "Garden Villa",
|
||||
price: "$700",
|
||||
variant: "Comfort",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/architecture-white-house-relaxation-room_1203-4422.jpg",
|
||||
},
|
||||
{
|
||||
id: "s4",
|
||||
name: "Family Suite",
|
||||
price: "$850",
|
||||
variant: "Spacious",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/room-interior-hotel-bedroom_23-2150683421.jpg",
|
||||
},
|
||||
{
|
||||
id: "s5",
|
||||
name: "Deluxe Room",
|
||||
price: "$500",
|
||||
variant: "Modern",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-interior-design-interior_23-2151929502.jpg",
|
||||
},
|
||||
{
|
||||
id: "s6",
|
||||
name: "Studio Suite",
|
||||
price: "$400",
|
||||
variant: "Cosy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-hotel-insights-details_23-2149160768.jpg",
|
||||
},
|
||||
{ id: "s1", name: "Royal Suite", price: "$1,200", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/scenic-view-sandy-beach-beach-with-sun-beds-umbrellas-open-against-sea-mountains-hotel-resort-tekirova-kemer-turkey_146671-18877.jpg" },
|
||||
{ id: "s2", name: "Ocean View Villa", price: "$950", variant: "Exclusive", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-modern-luxury-bedroom-suite-bathroom_105762-1945.jpg" },
|
||||
{ id: "s3", name: "Garden Villa", price: "$700", variant: "Comfort", imageSrc: "http://img.b2bpic.net/free-photo/architecture-white-house-relaxation-room_1203-4422.jpg" },
|
||||
{ id: "s4", name: "Family Suite", price: "$850", variant: "Spacious", imageSrc: "http://img.b2bpic.net/free-photo/room-interior-hotel-bedroom_23-2150683421.jpg" },
|
||||
{ id: "s5", name: "Deluxe Room", price: "$500", variant: "Modern", imageSrc: "http://img.b2bpic.net/free-photo/modern-interior-design-interior_23-2151929502.jpg" },
|
||||
{ id: "s6", name: "Studio Suite", price: "$400", variant: "Cosy", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-hotel-insights-details_23-2149160768.jpg" },
|
||||
]}
|
||||
title="Suites & Villas"
|
||||
description="Experience unparalleled comfort in our curated selection of luxury suites."
|
||||
@@ -227,47 +115,13 @@ export default function LandingPage() {
|
||||
<TestimonialCardThirteen
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah J.",
|
||||
handle: "@sarah_j",
|
||||
testimonial: "An absolutely breathtaking experience.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teen-age-youth-style-self-expression-concept-portrait-positive-happy-teenage-girl-with-bob-pinkish-hairstyle-facial-piercing-relaxing-indoors_343059-3781.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Michael C.",
|
||||
handle: "@m_chen",
|
||||
testimonial: "Perfect getaway.",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/seductive-lady-pink-silk-robe-holds-champagne-flute_8353-90.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Emily R.",
|
||||
handle: "@erod",
|
||||
testimonial: "Amazing views.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sensitive-emotional-creative-young-lady-midi-floral-yellow-green-dress-relaxes-transparent-chair-holds-red-flowers_197531-29885.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "David K.",
|
||||
handle: "@dk_traveller",
|
||||
testimonial: "Truly 5-star standard.",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-bride-young-woman-dressed-white-peignoir-posing-balcony-with-mountains-background-enjoying-bridal-morning-beautiful-girl-model-wedding-day-party-bachelorette-party_8353-12014.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Linda M.",
|
||||
handle: "@linda_m",
|
||||
testimonial: "Everything was perfect.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-holding-notepad-with-papers-posing_74855-9950.jpg",
|
||||
},
|
||||
{ id: "t1", name: "Sarah J.", handle: "@sarah_j", testimonial: "An absolutely breathtaking experience.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/teen-age-youth-style-self-expression-concept-portrait-positive-happy-teenage-girl-with-bob-pinkish-hairstyle-facial-piercing-relaxing-indoors_343059-3781.jpg" },
|
||||
{ id: "t2", name: "Michael C.", handle: "@m_chen", testimonial: "Perfect getaway.", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/seductive-lady-pink-silk-robe-holds-champagne-flute_8353-90.jpg" },
|
||||
{ id: "t3", name: "Emily R.", handle: "@erod", testimonial: "Amazing views.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/sensitive-emotional-creative-young-lady-midi-floral-yellow-green-dress-relaxes-transparent-chair-holds-red-flowers_197531-29885.jpg" },
|
||||
{ id: "t4", name: "David K.", handle: "@dk_traveller", testimonial: "Truly 5-star standard.", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/elegant-bride-young-woman-dressed-white-peignoir-posing-balcony-with-mountains-background-enjoying-bridal-morning-beautiful-girl-model-wedding-day-party-bachelorette-party_8353-12014.jpg" },
|
||||
{ id: "t5", name: "Linda M.", handle: "@linda_m", testimonial: "Everything was perfect.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-holding-notepad-with-papers-posing_74855-9950.jpg" },
|
||||
]}
|
||||
showRating={true}
|
||||
title="Verified Guest Reviews"
|
||||
@@ -280,21 +134,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "What are the check-in times?",
|
||||
content: "Check-in begins at 3:00 PM.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Is parking available?",
|
||||
content: "Yes, complimentary parking is available for all guests.",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Do you offer WiFi?",
|
||||
content: "Yes, we provide free high-speed WiFi throughout the resort.",
|
||||
},
|
||||
{ id: "f1", title: "What are the check-in times?", content: "Check-in begins at 3:00 PM." },
|
||||
{ id: "f2", title: "Is parking available?", content: "Yes, complimentary parking is available for all guests." },
|
||||
{ id: "f3", title: "Do you offer WiFi?", content: "Yes, we provide free high-speed WiFi throughout the resort." },
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Common inquiries to help you prepare for your stay."
|
||||
@@ -305,9 +147,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Get in Touch"
|
||||
title="Book Your Stay"
|
||||
description="Contact us to secure your suite or inquire about special offers."
|
||||
@@ -319,30 +159,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Rooms",
|
||||
href: "#suites",
|
||||
},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Rooms", href: "#suites" }, { label: "About Us", href: "#about" }] },
|
||||
{ items: [{ label: "Contact", href: "#contact" }, { label: "Privacy Policy", href: "#" }] },
|
||||
]}
|
||||
logoText="The Grove Resort Bahrain"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user