Merge version_1 into main #3

Merged
bender merged 1 commits from version_1 into main 2026-04-09 06:12:25 +00:00

View File

@@ -28,14 +28,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home", id: "#hero"},
{
name: "Menu", id: "#menu"},
{
name: "About", id: "#about"},
{
name: "Contact", id: "#contact"},
{ name: "Home", id: "#hero" },
{ name: "Menu", id: "#menu" },
{ name: "About", id: "#about" },
{ name: "Contact", id: "#contact" },
]}
brandName="ChoryDogos"
/>
@@ -44,59 +40,27 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitTestimonial
useInvertedBackground={true}
background={{
variant: "gradient-bars"}}
background={{ variant: "gradient-bars" }}
title="Culinary Perfection in Every Bite"
description="Welcome to ChoryDogos, where street food sophistication meets gourmet craftsmanship. Indulge in our artisan-curated flavors designed for the true food enthusiast."
testimonials={[
{
name: "Marcus V.", handle: "@marcusv", testimonial: "Simply the best artisanal hot dogs I have ever tasted.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/woman-eating-restaurant_23-2148006700.jpg"},
{
name: "Elena S.", handle: "@elenas", testimonial: "A complete revelation. The truffle mayo is a game changer.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/concentrated-young-redhead-curly-lady-standing-cafe_171337-16592.jpg"},
{
name: "Julian D.", handle: "@juliand", testimonial: "Elegant, delicious, and perfectly curated. Must-visit!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598413.jpg"},
{
name: "Sarah K.", handle: "@sarahk", testimonial: "ChoryDogos elevates the classic dog to fine dining levels.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-lady-designer-sitting-indoors-night-holding-pencil_171337-15774.jpg"},
{
name: "Leo B.", handle: "@leob", testimonial: "The atmosphere and flavors are absolutely world-class.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/bearded-elderly-businessman-man-restaurant-senior-black-suit_1157-46620.jpg"},
]}
buttons={[
{
text: "Reserve a Table", href: "#contact"},
{
text: "View Menu", href: "#menu"},
{ name: "Marcus V.", handle: "@marcusv", testimonial: "Simply the best artisanal hot dogs I have ever tasted.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-eating-restaurant_23-2148006700.jpg" },
{ name: "Elena S.", handle: "@elenas", testimonial: "A complete revelation. The truffle mayo is a game changer.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/concentrated-young-redhead-curly-lady-standing-cafe_171337-16592.jpg" },
{ name: "Julian D.", handle: "@juliand", testimonial: "Elegant, delicious, and perfectly curated. Must-visit!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598413.jpg" },
{ name: "Sarah K.", handle: "@sarahk", testimonial: "ChoryDogos elevates the classic dog to fine dining levels.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-lady-designer-sitting-indoors-night-holding-pencil_171337-15774.jpg" },
{ name: "Leo B.", handle: "@leob", testimonial: "The atmosphere and flavors are absolutely world-class.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/bearded-elderly-businessman-man-restaurant-senior-black-suit_1157-46620.jpg" }
]}
buttons={[{ text: "Reserve a Table", href: "#contact" }, { text: "View Menu", href: "#menu" }]}
imageSrc="http://img.b2bpic.net/free-photo/beautiful-thanksgiving-meal-concept_23-2148629583.jpg"
mediaAnimation="slide-up"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/woman-eating-restaurant_23-2148006700.jpg", alt: "Customer 1"},
{
src: "http://img.b2bpic.net/free-photo/concentrated-young-redhead-curly-lady-standing-cafe_171337-16592.jpg", alt: "Customer 2"},
{
src: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598413.jpg", alt: "Customer 3"},
{
src: "http://img.b2bpic.net/free-photo/smiling-young-lady-designer-sitting-indoors-night-holding-pencil_171337-15774.jpg", alt: "Customer 4"},
{
src: "http://img.b2bpic.net/free-photo/bearded-elderly-businessman-man-restaurant-senior-black-suit_1157-46620.jpg", alt: "Customer 5"},
]}
marqueeItems={[
{
type: "text", text: "Michelin Inspired"},
{
type: "text", text: "Locally Sourced"},
{
type: "text", text: "Artisan Bun"},
{
type: "text", text: "Small Batch"},
{
type: "text", text: "Gourmet Craft"},
{ src: "http://img.b2bpic.net/free-photo/woman-eating-restaurant_23-2148006700.jpg", alt: "Customer 1" },
{ src: "http://img.b2bpic.net/free-photo/concentrated-young-redhead-curly-lady-standing-cafe_171337-16592.jpg", alt: "Customer 2" },
{ src: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598413.jpg", alt: "Customer 3" },
{ src: "http://img.b2bpic.net/free-photo/smiling-young-lady-designer-sitting-indoors-night-holding-pencil_171337-15774.jpg", alt: "Customer 4" },
{ src: "http://img.b2bpic.net/free-photo/bearded-elderly-businessman-man-restaurant-senior-black-suit_1157-46620.jpg", alt: "Customer 5" }
]}
marqueeItems={[{ type: "text", text: "Michelin Inspired" }, { type: "text", text: "Locally Sourced" }, { type: "text", text: "Artisan Bun" }, { type: "text", text: "Small Batch" }, { type: "text", text: "Gourmet Craft" }]}
/>
</div>
@@ -105,14 +69,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Crafting Flavors Since 2018"
description="We started with a simple passion: to transform the everyday into an extraordinary culinary moment. Our commitment to high-quality ingredients and artisan techniques defines the ChoryDogos promise."
metrics={[
{
value: "12K+", title: "Artisan Meals Served"},
{
value: "20+", title: "Locally Sourced Toppings"},
{
value: "5.0", title: "Average Customer Rating"},
]}
metrics={[{ value: "12K+", title: "Artisan Meals Served" }, { value: "20+", title: "Locally Sourced Toppings" }, { value: "5.0", title: "Average Customer Rating" }]}
imageSrc="http://img.b2bpic.net/free-photo/precision-creativity-shine-as-chef-sprinkles-sliced-veggies-onto-dish_482257-124472.jpg"
mediaAnimation="blur-reveal"
metricsAnimation="slide-up"
@@ -126,18 +83,12 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
products={[
{
id: "p1", name: "Truffle Infusion", price: "$14", variant: "Gourmet", imageSrc: "http://img.b2bpic.net/free-photo/delicious-traditional-chorizo-arrangement_23-2148980265.jpg"},
{
id: "p2", name: "Classic Artisan", price: "$11", variant: "Signature", imageSrc: "http://img.b2bpic.net/free-photo/tasty-fast-food-hot-dog-close-up_23-2148668464.jpg"},
{
id: "p3", name: "Bacon Smokehouse", price: "$15", variant: "Savory", imageSrc: "http://img.b2bpic.net/free-photo/hot-dog_23-2147783603.jpg"},
{
id: "p4", name: "Spicy Chili Blast", price: "$13", variant: "Hot", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tasty-hot-dogs-arrangement_23-2148768202.jpg"},
{
id: "p5", name: "Green Garden Fresh", price: "$12", variant: "Vegan", imageSrc: "http://img.b2bpic.net/free-photo/gourmet-grilled-all-beef-hot-dog-with-sides-chips-delicious-simple-hot-dogs-with-mustard-pepper-onion-nachos-hot-dogs-fully-loaded-with-assorted-toppings-paddle-board_1150-44659.jpg"},
{
id: "p6", name: "Slaw & Crunch", price: "$12", variant: "Textured", imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-with-apples-rice_140725-764.jpg"},
{ id: "p1", name: "Truffle Infusion", price: "$14", variant: "Gourmet", imageSrc: "http://img.b2bpic.net/free-photo/delicious-traditional-chorizo-arrangement_23-2148980265.jpg" },
{ id: "p2", name: "Classic Artisan", price: "$11", variant: "Signature", imageSrc: "http://img.b2bpic.net/free-photo/tasty-fast-food-hot-dog-close-up_23-2148668464.jpg" },
{ id: "p3", name: "Bacon Smokehouse", price: "$15", variant: "Savory", imageSrc: "http://img.b2bpic.net/free-photo/hot-dog_23-2147783603.jpg" },
{ id: "p4", name: "Spicy Chili Blast", price: "$13", variant: "Hot", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tasty-hot-dogs-arrangement_23-2148768202.jpg" },
{ id: "p5", name: "Green Garden Fresh", price: "$12", variant: "Vegan", imageSrc: "http://img.b2bpic.net/free-photo/gourmet-grilled-all-beef-hot-dog-with-sides-chips-delicious-simple-hot-dogs-with-mustard-pepper-onion-nachos-hot-dogs-fully-loaded-with-assorted-toppings-paddle-board_1150-44659.jpg" },
{ id: "p6", name: "Slaw & Crunch", price: "$12", variant: "Textured", imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-with-apples-rice_140725-764.jpg" }
]}
title="Our Signature Creations"
description="Explore our curated collection of gourmet dogs, each uniquely inspired by classic flavors and modern culinary innovation."
@@ -154,12 +105,10 @@ export default function LandingPage() {
groups={[
{
id: "chefs", groupTitle: "Kitchen Leadership", members: [
{
id: "m1", title: "Chef Marco", subtitle: "Executive Chef", detail: "Master of artisan blends.", imageSrc: "http://img.b2bpic.net/free-photo/woman-eating-restaurant_23-2148006700.jpg"},
{
id: "m2", title: "Chef Elena", subtitle: "Pastry & Toppings", detail: "Creative flavor architect.", imageSrc: "http://img.b2bpic.net/free-photo/concentrated-young-redhead-curly-lady-standing-cafe_171337-16592.jpg"},
],
imageAlt: "gourmet hot dog fine dining presentation"},
{ id: "m1", title: "Chef Marco", subtitle: "Executive Chef", detail: "Master of artisan blends.", imageSrc: "http://img.b2bpic.net/free-photo/woman-eating-restaurant_23-2148006700.jpg" },
{ id: "m2", title: "Chef Elena", subtitle: "Pastry & Toppings", detail: "Creative flavor architect.", imageSrc: "http://img.b2bpic.net/free-photo/concentrated-young-redhead-curly-lady-standing-cafe_171337-16592.jpg" }
]
}
]}
/>
</div>
@@ -167,13 +116,9 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{
variant: "sparkles-gradient"}}
background={{ variant: "sparkles-gradient" }}
text="Join us for an unforgettable dining experience. Whether for a casual dinner or a celebration, our doors are open to delight your palate."
buttons={[
{
text: "Book Your Reservation", href: "mailto:reserve@chorydogos.com"},
]}
buttons={[{ text: "Book Your Reservation", href: "mailto:reserve@chorydogos.com" }]}
/>
</div>
@@ -181,30 +126,9 @@ export default function LandingPage() {
<FooterBaseCard
logoText="ChoryDogos"
columns={[
{
title: "Menu", items: [
{
label: "Gourmet Selection", href: "#menu"},
{
label: "Seasonal Specials", href: "#menu"},
],
},
{
title: "Company", items: [
{
label: "About Us", href: "#about"},
{
label: "Careers", href: "#"},
],
},
{
title: "Contact", items: [
{
label: "Reservations", href: "mailto:reserve@chorydogos.com"},
{
label: "Locations", href: "#"},
],
},
{ title: "Menu", items: [{ label: "Gourmet Selection", href: "#menu" }, { label: "Seasonal Specials", href: "#menu" }] },
{ title: "Company", items: [{ label: "About Us", href: "#about" }, { label: "Careers", href: "#" }] },
{ title: "Contact", items: [{ label: "Reservations", href: "mailto:reserve@chorydogos.com" }, { label: "Locations", href: "#" }] }
]}
copyrightText="© 2025 ChoryDogos Culinary Concepts"
/>