8 Commits

Author SHA1 Message Date
403a7ec273 Update src/app/page.tsx 2026-06-02 21:36:44 +00:00
ba8e38dd7a Merge version_14 into main
Merge version_14 into main
2026-06-02 21:35:11 +00:00
c8aaacf755 Update src/app/page.tsx 2026-06-02 21:35:08 +00:00
92a1401e9f Merge version_13 into main
Merge version_13 into main
2026-06-02 21:33:06 +00:00
cdf3d74f58 Update src/app/page.tsx 2026-06-02 21:33:03 +00:00
aa63cb5c2c Merge version_13 into main
Merge version_13 into main
2026-06-02 21:32:20 +00:00
1cc50bfd6d Update src/app/page.tsx 2026-06-02 21:32:17 +00:00
efff8f406f Merge version_12 into main
Merge version_12 into main
2026-06-02 21:29:30 +00:00

View File

@@ -30,6 +30,7 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
brandName="HidalGo Bistro"
logoClassName="text-2xl sm:text-3xl font-extrabold text-primary-cta drop-shadow-sm"
navItems={[
{ name: "Home", id: "#hero" },
{ name: "About", id: "#about" },
@@ -45,6 +46,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroCarouselLogo
logoText="HidalGo Bistro"
logoClassName="text-4xl sm:text-5xl lg:text-6xl font-extrabold text-primary-cta drop-shadow-md"
description="Experience refined cuisine in an intimate setting where culinary artistry meets sophisticated ambiance. HidalGo Bistro invites you to discover exceptional flavors and impeccable service."
buttons={[{ text: "Reserve Your Table", href: "#contact" }]}
slides={[
@@ -64,7 +66,7 @@ export default function LandingPage() {
useInvertedBackground={false}
tag="Our Story"
tagIcon={Utensils}
buttons={[{ text: "Explore Our Heritage", href: "#" }]}
buttons={[{ text: "Explore Our Heritage", href: "#menu" }]}
/>
</div>
<div id="features" data-section="features">
@@ -72,9 +74,9 @@ export default function LandingPage() {
title="Experience the Essence of HidalGo Bistro"
description="More than just a meal, HidalGo Bistro offers a complete sensory journey. Explore the pillars of our distinguished dining experience."
features={[
{ tag: "Ambiance", title: "Intimate & Elegant Setting", subtitle: "A sanctuary for the senses.", description: "Step into an oasis of calm and elegance. Our meticulously designed interiors, soft lighting, and curated decor create a sophisticated atmosphere, perfect for romantic evenings, intimate gatherings, and special celebrations. We ensure every visit is a sensory delight.", imageSrc: "http://img.b2bpic.net/free-photo/steak-with-creamy-mushroom-sauce-rice_140725-2206.jpg", imageAlt: "Elegant and intimate dining room at HidalGo Bistro" },
{ tag: "Cuisine", title: "Exquisite Culinary Creations", subtitle: "Taste the artistry.", description: "Led by acclaimed Chef Julian Herrera, our kitchen crafts a dynamic menu of Modern European cuisine with a focus on seasonal, locally sourced ingredients. Expect artfully presented dishes that tantalize the palate, from delicate appetizers to robust main courses and decadent desserts.", imageSrc: "http://img.b2bpic.net/free-photo/fresh-meat-with-green-sauce-tomato_140725-9526.jpg", imageAlt: "Exquisite gourmet dish with detailed plating" },
{ tag: "Service", title: "Impeccable & Attentive Service", subtitle: "Every detail perfected.", description: "At HidalGo Bistro, service is an art form. Our highly trained and intuitive staff are dedicated to anticipating your needs, offering expert recommendations on wine pairings, and ensuring every aspect of your visit is flawless and personalized, allowing you to relax and savor the moment.", imageSrc: "http://img.b2bpic.net/free-photo/male-waiter-using-touchpad-while-serving-customers-cafe-taking-their-orders_637285-3973.jpg", imageAlt: "Professional waiter serving a dish at a fine dining restaurant" }
{ tag: "Ambiance", title: "Intimate & Elegant Setting", subtitle: "A sanctuary for the senses.", description: "Step into an oasis of calm and elegance. Our meticulously designed interiors, soft lighting, and curated decor create a sophisticated atmosphere, perfect for romantic evenings, intimate gatherings, and special celebrations. We ensure every visit is a sensory delight.", imageSrc: "https://images.unsplash.com/photo-1544025166-57777708ee3b?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", imageAlt: "Elegant and intimate dining room at HidalGo Bistro" },
{ tag: "Cuisine", title: "Exquisite Culinary Creations", subtitle: "Taste the artistry.", description: "Led by acclaimed Chef Julian Herrera, our kitchen crafts a dynamic menu of Modern European cuisine with a focus on seasonal, locally sourced ingredients. Expect artfully presented dishes that tantalize the palate, from delicate appetizers to robust main courses and decadent desserts.", imageSrc: "https://images.unsplash.com/photo-1616424564557-5509e53ceb56?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", imageAlt: "Exquisite gourmet dish with detailed plating" },
{ tag: "Service", title: "Impeccable & Attentive Service", subtitle: "Every detail perfected.", description: "At HidalGo Bistro, service is an art form. Our highly trained and intuitive staff are dedicated to anticipating your needs, offering expert recommendations on wine pairings, and ensuring every aspect of your visit is flawless and personalized, allowing you to relax and savor the moment.", imageSrc: "https://images.unsplash.com/photo-1578351508218-c26639d6ec99?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", imageAlt: "Professional waiter serving a dish at a fine dining restaurant" }
]}
textboxLayout="default"
useInvertedBackground={true}
@@ -181,4 +183,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}