Update src/app/page.tsx
This commit is contained in:
259
src/app/page.tsx
259
src/app/page.tsx
@@ -30,101 +30,44 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Sanyi Sarok"
|
||||
button={{ text: "Reserve Now", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
title="Welcome to Sanyi Sarok Étterem"
|
||||
description="Authentic flavors, family traditions, and locally sourced ingredients served in the heart of the community. Experience the warmth of home in every bite."
|
||||
kpis={[
|
||||
{
|
||||
value: "15+",
|
||||
label: "Years Served",
|
||||
},
|
||||
{
|
||||
value: "50+",
|
||||
label: "Signature Dishes",
|
||||
},
|
||||
{
|
||||
value: "4.9",
|
||||
label: "Star Rating",
|
||||
},
|
||||
{ value: "15+", label: "Years Served" },
|
||||
{ value: "50+", label: "Signature Dishes" },
|
||||
{ value: "4.9", label: "Star Rating" },
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "Reserve a Table",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Reserve a Table", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/restaurant-tables-with-cozy-decor_23-2147764388.jpg"
|
||||
mediaAnimation="blur-reveal"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/event-hall-furniture-brown-white-colors_114579-2230.jpg",
|
||||
alt: "Event hall furniture in brown and white colors",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/elegant-table-with-drinks_1122-458.jpg",
|
||||
alt: "Elegant table with drinks",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/round-base-clear-drinking-glasses-brown-wooden-table-round-black-white-pendant-lamp_410324-63.jpg",
|
||||
alt: "Round base clear drinking glasses on brown wooden table",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/cafe-with-burning-candles-tables_140725-7784.jpg",
|
||||
alt: "Cafe with burning candles on the tables",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/man-preparing-salad-with-fresh-vegetables-wooden-table-cooking-tasty-healthy-food-black-background-vegetarian-food-healthy-cooking-concept-close-up_639032-429.jpg",
|
||||
alt: "Man preparing salad with fresh vegetables",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/event-hall-furniture-brown-white-colors_114579-2230.jpg", alt: "Event hall furniture" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/elegant-table-with-drinks_1122-458.jpg", alt: "Elegant table with drinks" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/round-base-clear-drinking-glasses-brown-wooden-table-round-black-white-pendant-lamp_410324-63.jpg", alt: "Round base clear drinking glasses" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/cafe-with-burning-candles-tables_140725-7784.jpg", alt: "Cafe with burning candles" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/man-preparing-salad-with-fresh-vegetables-wooden-table-cooking-tasty-healthy-food-black-background-vegetarian-food-healthy-cooking-concept-close-up_639032-429.jpg", alt: "Man preparing salad" },
|
||||
]}
|
||||
avatarText="Join our 1,000+ happy guests"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Authentic Ingredients",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Family Recipes",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Locally Sourced",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Traditional Warmth",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Community Roots",
|
||||
},
|
||||
{ type: "text", text: "Authentic Ingredients" },
|
||||
{ type: "text", text: "Family Recipes" },
|
||||
{ type: "text", text: "Locally Sourced" },
|
||||
{ type: "text", text: "Traditional Warmth" },
|
||||
{ type: "text", text: "Community Roots" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -133,12 +76,7 @@ export default function LandingPage() {
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="Our Passion for Authentic Dining"
|
||||
buttons={[
|
||||
{
|
||||
text: "Our Story",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Our Story", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -149,42 +87,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Grandma's Roast",
|
||||
price: "$24.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/traditional-italian-dish-burrata-mozzarella_501050-759.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Garden Fresh Pasta",
|
||||
price: "$18.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pasta-with-pesto-parmesan_23-2152015851.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Seasonal Herb Chicken",
|
||||
price: "$21.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-placed-mashed-potato-garnished-with-shredded-bell-pepper-thyme_141793-2239.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Traditional Goulash",
|
||||
price: "$16.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegetable-soup-with-different-ingredients-inside-brown-plate-dark-desk-soup-vegetable-sauce-meal-food-hot-food-dish_140725-64556.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Honey Walnut Cake",
|
||||
price: "$9.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tart-with-profiteroles-top-with-whipped-cream_114579-85556.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Roasted Vegetable Platter",
|
||||
price: "$17.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/border-made-healthy-food-ready-meal-vegetable-pieces_23-2148113640.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Grandma's Roast", price: "$24.00", imageSrc: "http://img.b2bpic.net/free-photo/traditional-italian-dish-burrata-mozzarella_501050-759.jpg" },
|
||||
{ id: "p2", name: "Garden Fresh Pasta", price: "$18.00", imageSrc: "http://img.b2bpic.net/free-photo/pasta-with-pesto-parmesan_23-2152015851.jpg" },
|
||||
{ id: "p3", name: "Seasonal Herb Chicken", price: "$21.00", imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-placed-mashed-potato-garnished-with-shredded-bell-pepper-thyme_141793-2239.jpg" },
|
||||
{ id: "p4", name: "Traditional Goulash", price: "$16.00", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegetable-soup-with-different-ingredients-inside-brown-plate-dark-desk-soup-vegetable-sauce-meal-food-hot-food-dish_140725-64556.jpg" },
|
||||
{ id: "p5", name: "Honey Walnut Cake", price: "$9.00", imageSrc: "http://img.b2bpic.net/free-photo/tart-with-profiteroles-top-with-whipped-cream_114579-85556.jpg" },
|
||||
{ id: "p6", name: "Roasted Vegetable Platter", price: "$17.00", imageSrc: "http://img.b2bpic.net/free-photo/border-made-healthy-food-ready-meal-vegetable-pieces_23-2148113640.jpg" },
|
||||
]}
|
||||
title="Signature Menu Highlights"
|
||||
description="Explore our chef's daily specials, traditional recipes passed through generations, and seasonal delights."
|
||||
@@ -198,24 +106,9 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
members={[
|
||||
{
|
||||
id: "m1",
|
||||
name: "Sándor Nagy",
|
||||
role: "Head Chef",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-male-baker-weighing-knead-dough-scale-commercial-kitchen_23-2148189058.jpg",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
name: "Katalin Tóth",
|
||||
role: "Sous Chef",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-chef-kitchen_23-2149646280.jpg",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
name: "László Kovács",
|
||||
role: "Pastry Chef",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-business-people-posing-indoors_1262-20190.jpg",
|
||||
},
|
||||
{ id: "m1", name: "Sándor Nagy", role: "Head Chef", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-male-baker-weighing-knead-dough-scale-commercial-kitchen_23-2148189058.jpg" },
|
||||
{ id: "m2", name: "Katalin Tóth", role: "Sous Chef", imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-chef-kitchen_23-2149646280.jpg" },
|
||||
{ id: "m3", name: "László Kovács", role: "Pastry Chef", imageSrc: "http://img.b2bpic.net/free-photo/happy-business-people-posing-indoors_1262-20190.jpg" },
|
||||
]}
|
||||
title="Meet Our Culinary Team"
|
||||
description="The dedicated professionals who bring heart and soul to your table every single day."
|
||||
@@ -228,41 +121,11 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Erika V.",
|
||||
role: "Local Regular",
|
||||
testimonial: "The best roast I've had in years. Feels like home.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-redhead-woman-having-fun-while-having-dinner-with-friends-home_637285-3551.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Mark J.",
|
||||
role: "Visitor",
|
||||
testimonial: "Incredible service and authentic taste. Must visit!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/expressive-young-lady-posing_176474-62590.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Anna P.",
|
||||
role: "Food Critic",
|
||||
testimonial: "A hidden gem of traditional flavors and warm ambiance.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-woman-holding-glass_23-2148965394.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Zoltán K.",
|
||||
role: "Loyal Patron",
|
||||
testimonial: "Always consistent, always delicious. My weekend go-to.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-gives-five-guy-from-india_496169-2861.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Mónika B.",
|
||||
role: "Family Diner",
|
||||
testimonial: "Kids love the menu and we love the atmosphere.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-businesswoman-her-colleague-toasting-with-champagne-office-party_637285-9569.jpg",
|
||||
},
|
||||
{ id: "t1", name: "Erika V.", role: "Local Regular", testimonial: "The best roast I've had in years. Feels like home.", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-redhead-woman-having-fun-while-having-dinner-with-friends-home_637285-3551.jpg" },
|
||||
{ id: "t2", name: "Mark J.", role: "Visitor", testimonial: "Incredible service and authentic taste. Must visit!", imageSrc: "http://img.b2bpic.net/free-photo/expressive-young-lady-posing_176474-62590.jpg" },
|
||||
{ id: "t3", name: "Anna P.", role: "Food Critic", testimonial: "A hidden gem of traditional flavors and warm ambiance.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-woman-holding-glass_23-2148965394.jpg" },
|
||||
{ id: "t4", name: "Zoltán K.", role: "Loyal Patron", testimonial: "Always consistent, always delicious. My weekend go-to.", imageSrc: "http://img.b2bpic.net/free-photo/girl-gives-five-guy-from-india_496169-2861.jpg" },
|
||||
{ id: "t5", name: "Mónika B.", role: "Family Diner", testimonial: "Kids love the menu and we love the atmosphere.", imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-businesswoman-her-colleague-toasting-with-champagne-office-party_637285-9569.jpg" },
|
||||
]}
|
||||
title="What Our Guests Say"
|
||||
description="Experience firsthand the community love for Sanyi Sarok."
|
||||
@@ -274,21 +137,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Do I need a reservation?",
|
||||
content: "While we welcome walk-ins, reservations are recommended for weekend evenings.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Are you pet friendly?",
|
||||
content: "Yes, our outdoor terrace is pet-friendly.",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Do you have vegetarian options?",
|
||||
content: "Absolutely! We offer several seasonal vegetarian signature dishes.",
|
||||
},
|
||||
{ id: "f1", title: "Do I need a reservation?", content: "While we welcome walk-ins, reservations are recommended for weekend evenings." },
|
||||
{ id: "f2", title: "Are you pet friendly?", content: "Yes, our outdoor terrace is pet-friendly." },
|
||||
{ id: "f3", title: "Do you have vegetarian options?", content: "Absolutely! We offer several seasonal vegetarian signature dishes." },
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Everything you need to know about our reservation process and dining experience."
|
||||
@@ -299,9 +150,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "rotated-rays-static",
|
||||
}}
|
||||
background={{ variant: "rotated-rays-static" }}
|
||||
tag="Connect"
|
||||
title="Reserve Your Table"
|
||||
description="Book your table today or join our newsletter for exclusive tasting events and special holiday offers."
|
||||
@@ -311,34 +160,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "About Us", href: "#about" }, { label: "Menu", href: "#products" }, { label: "Contact", href: "#contact" }] },
|
||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
logoText="Sanyi Sarok Étterem"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user