Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-06-11 05:38:18 +00:00
2 changed files with 24 additions and 45 deletions

View File

@@ -2,10 +2,8 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA'; import FaqDouble from '@/components/sections/faq/FaqDouble';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import MediaAbout from '@/components/sections/about/MediaAbout'; import MediaAbout from '@/components/sections/about/MediaAbout';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
@@ -13,6 +11,8 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Briefcase, Heart, Sparkles, Star } from "lucide-react"; import { Briefcase, Heart, Sparkles, Star } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
@@ -240,7 +240,7 @@ export default function LandingPage() {
</div> </div>
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqBase <FaqDouble
textboxLayout="default" textboxLayout="default"
useInvertedBackground={true} useInvertedBackground={true}
faqs={[ faqs={[
@@ -252,60 +252,41 @@ export default function LandingPage() {
id: "faq-3", title: "Is breakfast included with the room rate?", content: "Breakfast inclusion varies by room rate and package. Please check your booking confirmation or inquire at the reception for details."}, id: "faq-3", title: "Is breakfast included with the room rate?", content: "Breakfast inclusion varies by room rate and package. Please check your booking confirmation or inquire at the reception for details."},
{ {
id: "faq-4", title: "Do you have pet-friendly rooms?", content: "Unfortunately, Elysian Hotel does not currently accommodate pets. We apologize for any inconvenience."}, id: "faq-4", title: "Do you have pet-friendly rooms?", content: "Unfortunately, Elysian Hotel does not currently accommodate pets. We apologize for any inconvenience."},
{
id: "faq-5", title: "What is your cancellation policy?", content: "Our standard cancellation policy allows free cancellation up to 48 hours before arrival. Please refer to your booking terms for specific details."},
]} ]}
title="Frequently Asked Questions" title="Frequently Asked Questions"
description="Find quick answers to common questions about your stay, bookings, and hotel services." description="Find quick answers to common questions about your stay, bookings, and hotel services."
tag="Need Help?" tag="Need Help?"
faqsAnimation="slide-up" faqsAnimation="slide-up"
accordionClassName="border border-[var(--background-accent)] rounded-lg"
separatorClassName="bg-[var(--background-accent)]"
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCTA <ContactCenter
useInvertedBackground={false} useInvertedBackground={true}
background={{ background={{
variant: "radial-gradient"}} variant: "plain"}}
tag="Plan Your Visit" tag="Plan Your Visit"
title="Book Your Unforgettable Stay" title="Book Your Unforgettable Stay"
description="Contact us today to reserve your room or inquire about our exclusive packages. Our dedicated team is ready to assist you." description="Contact us today to reserve your room or inquire about our exclusive packages. Our dedicated team is ready to assist you."
buttons={[ inputPlaceholder="Your Email"
{ buttonText="Submit"
text: "Call Us Now", href: "tel:+1234567890"}, onSubmit={(email) => console.log(`Contact form submitted with email: ${email}`)}
{
text: "Send an Email", href: "mailto:info@elysianhotel.com"},
]}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseReveal <FooterBaseCard
logoText="Elysian Hotel" logoText="Elysian Hotel"
logoTextClassName="text-transparent bg-clip-text stroke-1 stroke-foreground text-9xl font-extrabold" logoTextClassName="text-transparent bg-clip-text text-8xl md:text-9xl font-extrabold stroke-1 stroke-foreground uppercase"
columns={[ columns={[
{ {
title: "Hotel", items: [ title: "Hotel", items: [
{ {
label: "About Us", href: "#about"}, label: "About Us", href: "#about"},
{ {
label: "Rooms & Suites", href: "#rooms"}, label: "Rooms", href: "#rooms"},
{
label: "Amenities", href: "#features"},
{
label: "Packages", href: "#pricing"},
],
},
{
title: "Guest Services", items: [
{
label: "Concierge", href: "#"},
{
label: "Dining", href: "#"},
{
label: "Spa", href: "#"},
{
label: "Events", href: "#"},
], ],
}, },
{ {
@@ -314,8 +295,6 @@ export default function LandingPage() {
label: "Contact Us", href: "#contact"}, label: "Contact Us", href: "#contact"},
{ {
label: "FAQ", href: "#faq"}, label: "FAQ", href: "#faq"},
{
label: "Sitemap", href: "#"},
], ],
}, },
{ {

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #0d1412; --background: #0a0a0a;
--card: #1a201f; --card: #1a1a1a;
--foreground: #eae5d8; --foreground: #ffffffe6;
--primary-cta: #d8a86b; --primary-cta: #e6e6e6;
--primary-cta-text: #0d1412; --primary-cta-text: #0a0a0a;
--secondary-cta: #1a201f; --secondary-cta: #1a1a1a;
--secondary-cta-text: #eae5d8; --secondary-cta-text: #ffffffe6;
--accent: #9cd6b5; --accent: #737373;
--background-accent: #1a201f; --background-accent: #737373;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);