Update src/app/page.tsx

This commit is contained in:
2026-01-30 10:05:40 +00:00
parent e72b179282
commit 7e10435fc6

View File

@@ -36,7 +36,7 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ button={{
text: "Reserve Table", href: "contact" text: "Reserve Table", href: "/contact"
}} }}
brandName="Hot" brandName="Hot"
/> />
@@ -48,7 +48,7 @@ export default function LandingPage() {
description="Premium hookah lounge experience with handcrafted flavors and luxurious ambiance" description="Premium hookah lounge experience with handcrafted flavors and luxurious ambiance"
buttons={[ buttons={[
{ text: "Explore Menu", href: "products" }, { text: "Explore Menu", href: "products" },
{ text: "Reserve Now", href: "contact" } { text: "Reserve Now", href: "/contact" }
]} ]}
slides={[ slides={[
{ {
@@ -78,7 +78,7 @@ export default function LandingPage() {
]} ]}
buttons={[ buttons={[
{ text: "Learn Our Story", href: "#" }, { text: "Learn Our Story", href: "#" },
{ text: "Visit Us Today", href: "contact" } { text: "Visit Us Today", href: "/contact" }
]} ]}
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
/> />
@@ -197,37 +197,6 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="contact" data-section="contact">
<ContactFaq
ctaTitle="Visit Hot Lounge"
ctaDescription="Reserve your table or inquire about private events. Our team is ready to welcome you."
ctaButton={{
text: "Book Your Session", href: "#"
}}
ctaIcon={MapPin}
faqs={[
{
id: "1", title: "What are your operating hours?", content: "We're open Tuesday to Thursday 5 PM - 2 AM, Friday to Saturday 5 PM - 3 AM, and Sunday 4 PM - 2 AM. Closed Mondays for private events."
},
{
id: "2", title: "Do you have private event spaces?", content: "Yes! We offer private lounge packages perfect for celebrations, corporate events, and group gatherings. Contact us for custom arrangements."
},
{
id: "3", title: "What's the difference between your flavor profiles?", content: "We offer light fruity blends, rich tobacco-forward selections, and exotic spice mixes. Our staff can recommend flavors based on your preferences."
},
{
id: "4", title: "Do you offer memberships?", content: "Yes! Our Premium Membership includes discounted sessions, exclusive flavors, priority reservations, and special member events throughout the year."
},
{
id: "5", title: "Is there a dress code?", content: "Smart casual is our standard. We maintain an upscale yet welcoming atmosphere. Please no athletic wear or offensive attire."
}
]}
animationType="slide-up"
accordionAnimationType="smooth"
useInvertedBackground="noInvert"
/>
</div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterCard <FooterCard
logoText="Hot" logoText="Hot"
@@ -243,11 +212,11 @@ export default function LandingPage() {
}, },
{ {
icon: MapPin, icon: MapPin,
href: "#contact", ariaLabel: "Location" href: "/contact", ariaLabel: "Location"
} }
]} ]}
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }