3 Commits

Author SHA1 Message Date
c5b64e9cfe Merge version_2 into main
Merge version_2 into main
2026-04-26 12:53:41 +00:00
168c06ab38 Update src/app/page.tsx 2026-04-26 12:53:38 +00:00
360d8a4a1a Merge version_1 into main
Merge version_1 into main
2026-04-26 12:52:49 +00:00

View File

@@ -125,9 +125,10 @@ export default function LandingPage() {
<FaqSplitText <FaqSplitText
useInvertedBackground={false} useInvertedBackground={false}
faqs={[ faqs={[
{ id: "f1", title: "Do you accept reservations?", content: "Yes, we encourage bookings via phone or our website." }, { id: "f1", title: "Do you accept reservations?", content: "Yes, we accept online bookings or phone reservations daily from 10:00 AM to 9:00 PM." },
{ id: "f2", title: "Are vegan options available?", content: "We offer a wide range of plant-based dishes." }, { id: "f2", title: "What are your operating hours?", content: "We are open daily: Breakfast 8 AM-11 AM, Lunch 11 AM-4 PM, and Dinner 4 PM-10 PM." },
{ id: "f3", title: "Is parking available?", content: "Complimentary valet service is provided for our guests." } { id: "f3", title: "Are vegan options available?", content: "Yes, our menu features curated vegan, vegetarian, and gluten-free options clearly marked." },
{ id: "f4", title: "Where are you located?", content: "We are located at 123 Culinary Avenue, Foodie District, right in the heart of the city center." }
]} ]}
sideTitle="Frequently Asked Questions" sideTitle="Frequently Asked Questions"
faqsAnimation="blur-reveal" faqsAnimation="blur-reveal"
@@ -167,8 +168,8 @@ export default function LandingPage() {
background={{ background={{
variant: "gradient-bars"}} variant: "gradient-bars"}}
tag="Visit Us" tag="Visit Us"
title="Reserve Your Table" title="Contact & Reservations"
description="Secure your spot at Star Rock for an unforgettable culinary experience." description="123 Culinary Avenue, Foodie District | Phone: (555) 123-4567 | Hours: Daily 8 AM - 10 PM"
/> />
</div> </div>
@@ -178,12 +179,14 @@ export default function LandingPage() {
{ {
title: "Info", items: [ title: "Info", items: [
{ label: "About", href: "#about" }, { label: "About", href: "#about" },
{ label: "Menu", href: "#products" } { label: "Menu", href: "#products" },
{ label: "Visit", href: "#contact" }
] ]
}, },
{ {
title: "Contact", items: [ title: "Contact", items: [
{ label: "Book", href: "#contact" }, { label: "(555) 123-4567", href: "tel:+15551234567" },
{ label: "hello@starrock.com", href: "mailto:hello@starrock.com" },
{ label: "Careers", href: "#" } { label: "Careers", href: "#" }
] ]
}, },
@@ -200,4 +203,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }