Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #1.
This commit is contained in:
313
src/app/page.tsx
313
src/app/page.tsx
@@ -30,123 +30,25 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Amenities",
|
||||
id: "features",
|
||||
},
|
||||
{
|
||||
name: "Our Story",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Guest Reviews",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Services", id: "features" },
|
||||
{ name: "The Chef", id: "about" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Aura Hotels"
|
||||
brandName="Chef Eloise"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="Redefining Private Luxury"
|
||||
description="Experience unparalleled comfort and personalized service in our exclusive boutique properties. Every stay is designed to provide you with the ultimate retreat."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Elena Vance",
|
||||
handle: "@elena_travels",
|
||||
testimonial: "An absolute masterpiece of hospitality. The privacy and service were beyond my expectations.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-indigenous-businesswoman_23-2151201362.jpg",
|
||||
},
|
||||
{
|
||||
name: "Marcus Thorne",
|
||||
handle: "@mthorne",
|
||||
testimonial: "The best boutique hotel experience I've ever had. Truly refined.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-stylish-traveller-walking-down-shore_23-2148588586.jpg",
|
||||
},
|
||||
{
|
||||
name: "Sarah Jenkins",
|
||||
handle: "@sjenkins",
|
||||
testimonial: "A sanctuary. Perfect for recharging in luxury and complete silence.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-brunette-female-enjoys-happy-days-vacation-sits-hotel-cafe-demonstrates-wonderful-apartments-drinks-fresh-fruit-shake-attractive-young-caucasian-woman-rests-resort-country_273609-2737.jpg",
|
||||
},
|
||||
{
|
||||
name: "David Wu",
|
||||
handle: "@dwu_design",
|
||||
testimonial: "Elegant, understated, and incredibly well-designed. Will return soon.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-male-travel-standing-bridge-talking-cellphone_23-2147860974.jpg",
|
||||
},
|
||||
{
|
||||
name: "Claire Dupont",
|
||||
handle: "@cdupont",
|
||||
testimonial: "The attention to detail is simply unmatched in the industry.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-hotel-room_23-2148095298.jpg",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/bride-her-wedding-day-morning-preparation_1303-10492.jpg"
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Culinary Excellence, Curated for You"
|
||||
description="Bringing fine dining into the intimacy of your private sanctuary. Bespoke menus crafted for your unique palate and special occasions."
|
||||
testimonials={[]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chef-preparing-dish_23-2148839088.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/architecture_1122-1804.jpg",
|
||||
alt: "architecture",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/fashion-portrait-blonde-caucasian-stylish-woman-french-cap-blazer-shorts-outdoor-outside-villa_343596-2200.jpg",
|
||||
alt: "Stylish traveler",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/fashion-sexy-young-woman-trendy-outfit-posing-sitting-table-with-luxury-food-drink-looking-window-glamour-seductive-female-lingerie-stylish-wear-relaxing-enjoying-rich-lifestyle_132075-9617.jpg",
|
||||
alt: "Glamour guest",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/luxury-stylish-wedding-wedding-day-beautiful-bride-elegant-groom-look-each-other_8353-5865.jpg",
|
||||
alt: "Happy couple",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-indigenous-businesswoman_23-2151201362.jpg",
|
||||
alt: "Elegant traveler",
|
||||
},
|
||||
]}
|
||||
avatarText="Join our global community of luxury travelers"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Bespoke Services",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "World-Class Dining",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Private Sanctuaries",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Personalized Concierge",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Unrivaled Comfort",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -157,75 +59,19 @@ export default function LandingPage() {
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Wellness Sanctuary",
|
||||
description: "Rejuvenate with our world-class spa facilities, offering bespoke treatments.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spa-still-life_23-2147821076.jpg",
|
||||
titleImageSrc: "http://img.b2bpic.net/free-photo/serene-bedroom-oasis-with-waterfall-view_23-2152008210.jpg",
|
||||
buttonText: "Discover Spa",
|
||||
},
|
||||
{
|
||||
title: "Gourmet Gastronomy",
|
||||
description: "Taste the finest local flavors prepared by our private award-winning chefs.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/slice-tasty-tuna-meal-with-glass-white-wine-restaurant_8353-10588.jpg",
|
||||
titleImageSrc: "http://img.b2bpic.net/free-photo/creative-assortment-delicious-food_23-2148949025.jpg",
|
||||
buttonText: "Explore Dining",
|
||||
},
|
||||
{
|
||||
title: "Private Suites",
|
||||
description: "Luxurious living spaces designed with maximum privacy and comfort in mind.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-luxurious-bedroom-elegant-comfortable-design-generated-by-ai_188544-29281.jpg",
|
||||
titleImageSrc: "http://img.b2bpic.net/free-photo/summer-sky-bungalow-palm-swimming_1253-648.jpg",
|
||||
buttonText: "Book Suite",
|
||||
},
|
||||
{ title: "Private Events", description: "Exclusive dining for private gatherings and celebrations.", imageSrc: "http://img.b2bpic.net/free-photo/dinner-party_23-2148564177.jpg", titleImageSrc: "", buttonText: "Learn More" },
|
||||
{ title: "Personalized Menus", description: "Tailored seasonal menus designed around your dietary preferences.", imageSrc: "http://img.b2bpic.net/free-photo/gourmet-plate_23-2148949025.jpg", titleImageSrc: "", buttonText: "Start Planning" },
|
||||
{ title: "Professional Service", description: "High-end execution with full kitchen cleanup included.", imageSrc: "http://img.b2bpic.net/free-photo/waiter-serving_23-2148949040.jpg", titleImageSrc: "", buttonText: "Request Quote" },
|
||||
]}
|
||||
title="Unrivaled Amenities"
|
||||
description="Indulge in a curated collection of services that define modern elegance."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="amenities" data-section="amenities">
|
||||
<MetricCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "24/7",
|
||||
description: "Private Concierge",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "100%",
|
||||
description: "Personalized Service",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "5-Star",
|
||||
description: "Curated Experiences",
|
||||
},
|
||||
]}
|
||||
title="Refined Hospitality"
|
||||
description="Our properties set a new benchmark for excellence."
|
||||
title="My Services"
|
||||
description="A professional culinary experience that turns your kitchen into a 5-star restaurant."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={true}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Our Legacy of Excellence",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-japanese-garden_23-2149359734.jpg",
|
||||
alt: "Hotel Grounds",
|
||||
},
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
heading={[{ type: "text", content: "Crafting Flavors, Creating Memories" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -235,92 +81,20 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Elena Vance",
|
||||
role: "Traveler",
|
||||
company: "Global Explorers",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-welldressed-arabian-man-smoke-cigar-with-glass-whiskey-balcony-pub_627829-5920.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Marcus Thorne",
|
||||
role: "CEO",
|
||||
company: "Tech Innovations",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-curly-lady-midi-beige-dress-with-little-straw-bag-holds-boater-brunette-woman-smiles-walks-along-path-old-south-city_197531-30089.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Sarah Jenkins",
|
||||
role: "Creative",
|
||||
company: "Design Studio",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-spirited-male-passenger-with-trolley-suitcase-getting-off-moving-staircase-airport_259150-58718.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "David Wu",
|
||||
role: "Director",
|
||||
company: "Architects Co",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/casual-bearded-male-jeans-fleece-shirt-stand-step-holds-backpack_613910-12211.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Claire Dupont",
|
||||
role: "Designer",
|
||||
company: "Creative Firm",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-lying-bed_1150-8839.jpg",
|
||||
},
|
||||
]}
|
||||
title="Guest Testimonials"
|
||||
description="See why our guests return time and again."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "How do I book?",
|
||||
content: "Booking is easy via our website or personal concierge service.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Is privacy guaranteed?",
|
||||
content: "Yes, we prioritize guest anonymity and complete security.",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Can I request custom services?",
|
||||
content: "Absolutely, our concierge is here to tailor every detail.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hotel-lobby-with-impressive-design-modern-furniture-expensive-resort-accommodation-with-marble-floors-empty-reception-front-desk-with-computers-service-bell-registration_482257-61927.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
title="Frequently Asked"
|
||||
description="Answers to your questions about our services."
|
||||
faqsAnimation="slide-up"
|
||||
testimonials={[]}
|
||||
title="Client Experiences"
|
||||
description="Hear from those who have enjoyed the bespoke private chef experience."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Inquire"
|
||||
title="Start Your Journey"
|
||||
description="Get in touch to reserve your private sanctuary."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-having-tropical-healthy-breakfast-villa-floating-table_343596-1154.jpg"
|
||||
useInvertedBackground={true}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Book Now"
|
||||
title="Reserve Your Experience"
|
||||
description="Let's create an unforgettable dining event together. Contact me today to discuss your vision."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cooking-class_23-2148839088.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -328,38 +102,13 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Explore",
|
||||
items: [
|
||||
{
|
||||
label: "Amenities",
|
||||
href: "#features",
|
||||
},
|
||||
{
|
||||
label: "Our Story",
|
||||
href: "#about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Navigation", items: [{ label: "Home", href: "#hero" }, { label: "Services", href: "#features" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Aura Hotels. All rights reserved."
|
||||
bottomRightText="Luxury Hospitality Defined."
|
||||
bottomLeftText="© 2024 Chef Eloise. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user