Merge version_2 into main #1

Merged
bender merged 2 commits from version_2 into main 2026-05-09 16:11:19 +00:00
2 changed files with 35 additions and 154 deletions

View File

@@ -30,22 +30,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "hero",
},
{
name: "About",
id: "about",
},
{
name: "Menu",
id: "menu",
},
{
name: "Contact",
id: "contact",
},
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Contact", id: "contact" },
]}
brandName="D'Vine House Bistro"
/>
@@ -56,18 +44,9 @@ export default function LandingPage() {
logoText="D'Vine House Bistro"
description="Family-owned. Made from scratch. Served with heart in Canyon Lake, Texas."
buttons={[
{
text: "View Menu",
href: "#menu",
},
{
text: "Reserve a Table",
href: "#contact",
},
{
text: "Call Now",
href: "tel:+15126983992",
},
{ text: "View Menu", href: "#menu" },
{ text: "Reserve a Table", href: "#contact" },
{ text: "Call Now", href: "tel:+15126983992" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/wine-glass-table-setting_74190-4678.jpg"
@@ -96,42 +75,12 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{
id: "1",
name: "Chicken Tortilla Soup",
price: "$9",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-appetizing-pozole-bowl_23-2149248633.jpg",
},
{
id: "2",
name: "Angus Burger",
price: "$18",
imageSrc: "http://img.b2bpic.net/free-photo/beef-burger-sesame-bun-served-with-fries_140725-1703.jpg",
},
{
id: "3",
name: "Chilaquiles",
price: "$16",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-mexican-food_23-2148140192.jpg",
},
{
id: "4",
name: "Carne Guisada Plate",
price: "$19",
imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-pototaes-sauce_141793-104.jpg",
},
{
id: "5",
name: "Enchiladas Verdes",
price: "$17",
imageSrc: "http://img.b2bpic.net/free-photo/tacos-other-mexican-food_23-2147740772.jpg",
},
{
id: "6",
name: "Pecan Pie",
price: "$8",
imageSrc: "http://img.b2bpic.net/free-photo/sweet-dessert-with-honey-toast-with-strawberry-jam_1203-9306.jpg",
},
{ id: "1", name: "Chicken Tortilla Soup", price: "$9", imageSrc: "http://img.b2bpic.net/free-photo/top-view-appetizing-pozole-bowl_23-2149248633.jpg" },
{ id: "2", name: "Angus Burger", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/beef-burger-sesame-bun-served-with-fries_140725-1703.jpg" },
{ id: "3", name: "Chilaquiles", price: "$16", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-mexican-food_23-2148140192.jpg" },
{ id: "4", name: "Carne Guisada Plate", price: "$19", imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-pototaes-sauce_141793-104.jpg" },
{ id: "5", name: "Enchiladas Verdes", price: "$17", imageSrc: "http://img.b2bpic.net/free-photo/tacos-other-mexican-food_23-2147740772.jpg" },
{ id: "6", name: "Pecan Pie", price: "$8", imageSrc: "http://img.b2bpic.net/free-photo/sweet-dessert-with-honey-toast-with-strawberry-jam_1203-9306.jpg" },
]}
title="Signature Menu Highlights"
description="Gourmet comfort food handcrafted with love and fresh ingredients."
@@ -140,37 +89,16 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
useInvertedBackground={false}
useInvertedBackground={true}
testimonials={[
{
id: "1",
name: "Sarah J.",
imageSrc: "http://img.b2bpic.net/free-photo/girl-sitting-table-holding-mobile-phone-indoors_171337-17097.jpg",
},
{
id: "2",
name: "Mark D.",
imageSrc: "http://img.b2bpic.net/free-photo/crazy-chef-angry-expression_1194-1421.jpg",
},
{
id: "3",
name: "Elena R.",
imageSrc: "http://img.b2bpic.net/free-photo/group-young-friends-having-wine-together_23-2148454148.jpg",
},
{
id: "4",
name: "Tom B.",
imageSrc: "http://img.b2bpic.net/free-photo/merry-young-adult-enjoying-christmas-conversation-video-call-room-decorated-festivity-celebration-talking-woman-preparing-drink-wine-kitchen-with-joyful-ornaments_482257-28400.jpg",
},
{
id: "5",
name: "Lucy K.",
imageSrc: "http://img.b2bpic.net/free-photo/professional-company-executive-reviews-enterprise-solutions-her-laptop_482257-107856.jpg",
},
{ id: "1", name: "Sarah J.", imageSrc: "http://img.b2bpic.net/free-photo/girl-sitting-table-holding-mobile-phone-indoors_171337-17097.jpg" },
{ id: "2", name: "Mark D.", imageSrc: "http://img.b2bpic.net/free-photo/crazy-chef-angry-expression_1194-1421.jpg" },
{ id: "3", name: "Elena R.", imageSrc: "http://img.b2bpic.net/free-photo/group-young-friends-having-wine-together_23-2148454148.jpg" },
]}
cardTitle="What Our Guests Say"
cardTag="Reviews"
cardTitle="Luxury Testimonials"
cardTag="Refined Experiences"
cardAnimation="slide-up"
className="bg-[#f6f0e9] border-t border-[#afa094]"
/>
</div>
@@ -180,84 +108,37 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
features={[
{
id: "g1",
label: "Food",
title: "Homemade Creations",
items: [
"Fresh Desserts",
"Hearty Meals",
"Local Flavors",
],
},
{
id: "g2",
label: "Interior",
title: "Cozy Ambience",
items: [
"Rustic Decor",
"Warm Lighting",
"Family Feel",
],
},
{
id: "g3",
label: "Vibe",
title: "Canyon Lake Charm",
items: [
"Authentic Hospitality",
"Community Focus",
"Upscale Comfort",
],
},
{ id: "g1", label: "Gallery", title: "Artistic Presentations", items: ["Signature Plating", "Rustic Culinary Art", "Fresh Ingredients Showcase"], buttons: [{ text: "View Gallery" }] }
]}
title="A Rustic Experience"
description="Visualizing the warmth and charm of our Canyon Lake bistro."
title="Visual Culinary Journey"
description="A professional showcase of our premium gourmet offerings."
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={false}
title="Visit Us"
description="2173 Potters Creek Rd, Canyon Lake, TX 78133 | (512) 698-3992"
useInvertedBackground={true}
title="Contact & Location"
description="Experience the heart of Canyon Lake. Join us for a curated culinary experience."
inputs={[
{
name: "name",
type: "text",
placeholder: "Name",
required: true,
},
{
name: "email",
type: "email",
placeholder: "Email",
required: true,
},
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true },
]}
textarea={{
name: "msg",
placeholder: "Reservation details or questions...",
required: true,
}}
textarea={{ name: "msg", placeholder: "Your inquiries...", required: true }}
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-friends-sitting-together-bistro_23-2149356895.jpg"
className="bg-[#f6f0e9]"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="D'Vine House Bistro"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
rightLink={{
text: "Crafted with heart in Canyon Lake, Texas.",
href: "#",
}}
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "© 2025 D'Vine House Bistro. All Rights Reserved.", href: "#" }}
className="bg-black text-white"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -13,7 +13,7 @@
--background: #f6f0e9;
--card: #efe7dd;
--foreground: #2b180a;
--primary-cta: #8b5cf6;
--primary-cta: #2b180a;
--primary-cta-text: #f6f0e9;
--secondary-cta: #efe7dd;
--secondary-cta-text: #2b180a;