Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-04-22 11:08:37 +00:00

View File

@@ -11,7 +11,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import { MapPin } from "lucide-react";
import { MapPin, Utensils, Soup, Beer, Award } from "lucide-react";
export default function LandingPage() {
return (
@@ -19,23 +19,21 @@ export default function LandingPage() {
defaultButtonVariant="text-shift"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Menu",
id: "menu",
},
{
name: "Galerie",
id: "galerie",
},
{
name: "Kontakt",
id: "kontakt",
},
{ name: "Menu", id: "menu" },
{ name: "Galerie", id: "galerie" },
{ name: "Kontakt", id: "kontakt" }
]}
brandName="Betáni"
/>
@@ -43,30 +41,14 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardGallery
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
title="Jídelna na Betáni"
description="Rychlé, poctivé a dostupné jídlo pro každý den v Kunraticích."
buttons={[
{
text: "Zobrazit menu",
href: "#menu",
},
]}
buttons={[{ text: "Zobrazit menu", href: "#menu" }]}
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/person-cafe-enjoying-book_23-2150064696.jpg?_wi=1",
imageAlt: "restaurant interior rustic dining",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/yogurt-garlic-tomato-table_114579-9284.jpg?_wi=1",
imageAlt: "traditional lunch meal plate",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-hotel-interior_1203-8505.jpg",
imageAlt: "warm restaurant dining room",
},
{ imageSrc: "http://img.b2bpic.net/free-photo/person-cafe-enjoying-book_23-2150064696.jpg", imageAlt: "restaurant interior rustic dining" },
{ imageSrc: "http://img.b2bpic.net/free-photo/yogurt-garlic-tomato-table_114579-9284.jpg", imageAlt: "traditional lunch meal plate" },
{ imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-hotel-interior_1203-8505.jpg", imageAlt: "warm restaurant dining room" }
]}
mediaAnimation="blur-reveal"
/>
@@ -80,7 +62,7 @@ export default function LandingPage() {
description="Najdete nás přímo v srdci Kunratic. Přijďte si pochutnat na našich denních menu, která připravujeme každý den čerstvá."
subdescription="Otevřeno máme do 15:00. Těšíme se na vaši návštěvu!"
icon={MapPin}
imageSrc="http://img.b2bpic.net/free-photo/young-waiter-showing-menu-touchpad-his-customers-cafe_637285-7832.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/young-waiter-showing-menu-touchpad-his-customers-cafe_637285-7832.jpg"
mediaAnimation="slide-up"
/>
</div>
@@ -90,34 +72,10 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "Hlavní jídla",
description: "Řízek, guláš, steak a mnoho moderních jídel v ceně od 152 Kč.",
buttonIcon: "Utensils",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-shrimp-vegetables-fruits_23-2148803405.jpg",
imageAlt: "fresh soup bowl lunch",
},
{
title: "Polévky",
description: "Poctivé domácí polévky za 39 Kč.",
buttonIcon: "Soup",
imageSrc: "http://img.b2bpic.net/free-photo/person-cafe-enjoying-book_23-2150064696.jpg?_wi=2",
imageAlt: "fresh soup bowl lunch",
},
{
title: "Nápoje",
description: "Točená Kofola, pivo Muflon 11° a další.",
buttonIcon: "Beer",
imageSrc: "http://img.b2bpic.net/free-photo/young-waiter-showing-menu-touchpad-his-customers-cafe_637285-7832.jpg?_wi=2",
imageAlt: "fresh soup bowl lunch",
},
{
title: "Kvalita",
description: "Vždy čerstvé suroviny od lokálních dodavatelů.",
buttonIcon: "Award",
imageSrc: "http://img.b2bpic.net/free-photo/yogurt-garlic-tomato-table_114579-9284.jpg?_wi=2",
imageAlt: "fresh soup bowl lunch",
},
{ title: "Hlavní jídla", description: "Řízek, guláš, steak a mnoho moderních jídel v ceně od 152 Kč.", buttonIcon: Utensils, imageSrc: "http://img.b2bpic.net/free-photo/top-view-shrimp-vegetables-fruits_23-2148803405.jpg" },
{ title: "Polévky", description: "Poctivé domácí polévky za 39 Kč.", buttonIcon: Soup, imageSrc: "http://img.b2bpic.net/free-photo/person-cafe-enjoying-book_23-2150064696.jpg" },
{ title: "Nápoje", description: "Točená Kofola, pivo Muflon 11° a další.", buttonIcon: Beer, imageSrc: "http://img.b2bpic.net/free-photo/young-waiter-showing-menu-touchpad-his-customers-cafe_637285-7832.jpg" },
{ title: "Kvalita", description: "Vždy čerstvé suroviny od lokálních dodavatelů.", buttonIcon: Award, imageSrc: "http://img.b2bpic.net/free-photo/yogurt-garlic-tomato-table_114579-9284.jpg" }
]}
title="Denní menu"
description="Každý den připravujeme pestrou nabídku jídel za skvělé ceny."
@@ -127,40 +85,15 @@ export default function LandingPage() {
<div id="galerie" data-section="galerie">
<ProductCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={true}
textboxLayout="default"
products={[
{
id: "1",
name: "Tradiční guláš",
price: "152 Kč",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-spanish-food_23-2149210890.jpg",
},
{
id: "2",
name: "Smažený řízek",
price: "152 Kč",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-delicious-thanksgiving-meal_23-2148629558.jpg",
},
{
id: "3",
name: "Čerstvá polévka",
price: "39 Kč",
imageSrc: "http://img.b2bpic.net/free-photo/mushroom-soup_1339-4685.jpg",
},
{
id: "4",
name: "Kofola",
price: "35 Kč",
imageSrc: "http://img.b2bpic.net/free-photo/protein-gummy-snacks-healthy-lifestyle_23-2151119206.jpg",
},
{
id: "5",
name: "Hlavní sál",
price: "Prostor",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-with-drinks-tacos_23-2149073435.jpg",
},
{ id: "1", name: "Tradiční guláš", price: "152 Kč", imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-spanish-food_23-2149210890.jpg" },
{ id: "2", name: "Smažený řízek", price: "152 Kč", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-delicious-thanksgiving-meal_23-2148629558.jpg" },
{ id: "3", name: "Čerstvá polévka", price: "39 Kč", imageSrc: "http://img.b2bpic.net/free-photo/mushroom-soup_1339-4685.jpg" },
{ id: "4", name: "Kofola", price: "35 Kč", imageSrc: "http://img.b2bpic.net/free-photo/protein-gummy-snacks-healthy-lifestyle_23-2151119206.jpg" },
{ id: "5", name: "Hlavní sál", price: "Prostor", imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-with-drinks-tacos_23-2149073435.jpg" }
]}
title="Galerie jídelny"
description="Nahlédněte do našeho prostředí a na to, co právě vaříme."
@@ -173,27 +106,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
metrics={[
{
id: "m1",
value: "100%",
title: "Čerstvé suroviny",
description: "Vaříme pouze z prověřených zdrojů.",
imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-rice-grains-polenta-puffed-rice-cake-vegetables-wooden-table_23-2148062366.jpg",
},
{
id: "m2",
value: "95%",
title: "Spokojenost",
description: "Tisíce spokojených obědů každý měsíc.",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-cheerful-africanamerican-female-model-showing-okay-sign-winking-looking-satisfied-rec_1258-129397.jpg",
},
{
id: "m3",
value: "150 Kč",
title: "Průměrná útrata",
description: "Skvělý poměr kvality a ceny.",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-volunteers-exchanging-cans-food-donation-boxes_23-2148732723.jpg",
},
{ id: "m1", value: "100%", title: "Čerstvé suroviny", description: "Vaříme pouze z prověřených zdrojů.", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-rice-grains-polenta-puffed-rice-cake-vegetables-wooden-table_23-2148062366.jpg" },
{ id: "m2", value: "95%", title: "Spokojenost", description: "Tisíce spokojených obědů každý měsíc.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-cheerful-africanamerican-female-model-showing-okay-sign-winking-looking-satisfied-rec_1258-129397.jpg" },
{ id: "m3", value: "150 Kč", title: "Průměrná útrata", description: "Skvělý poměr kvality a ceny.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-volunteers-exchanging-cans-food-donation-boxes_23-2148732723.jpg" }
]}
title="Naše hodnoty"
description="Co nás dělá výjimečnými?"
@@ -204,31 +119,11 @@ export default function LandingPage() {
<TestimonialCardTwelve
useInvertedBackground={true}
testimonials={[
{
id: "t1",
name: "Jan Novák",
imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-happy-bearded-man-with-specific-appearance-uses-tablet-computer_273609-8927.jpg",
},
{
id: "t2",
name: "Marie Svobodová",
imageSrc: "http://img.b2bpic.net/free-photo/person-paying-using-nfc-technology_23-2149893754.jpg",
},
{
id: "t3",
name: "Petr Dvořák",
imageSrc: "http://img.b2bpic.net/free-photo/smiley-man-carrying-mugs-with-coffee-his-colleagues_23-2148817106.jpg",
},
{
id: "t4",
name: "Lucie Černá",
imageSrc: "http://img.b2bpic.net/free-photo/happiness-leisure-lifestyle-concept-smiling-african-american-female-recreates-cafe-restaurant-eats-delicious-dessert-drinks-cocktail-happy-have-pleasant-conversation-with-interlocutor_273609-2194.jpg",
},
{
id: "t5",
name: "Tomáš Kučera",
imageSrc: "http://img.b2bpic.net/free-photo/young-bald-caucasian-man-pink-hoodie-isolated-positive-one-thumb-up-one-down_343596-4823.jpg",
},
{ id: "t1", name: "Jan Novák", imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-happy-bearded-man-with-specific-appearance-uses-tablet-computer_273609-8927.jpg" },
{ id: "t2", name: "Marie Svobodová", imageSrc: "http://img.b2bpic.net/free-photo/person-paying-using-nfc-technology_23-2149893754.jpg" },
{ id: "t3", name: "Petr Dvořák", imageSrc: "http://img.b2bpic.net/free-photo/smiley-man-carrying-mugs-with-coffee-his-colleagues_23-2148817106.jpg" },
{ id: "t4", name: "Lucie Černá", imageSrc: "http://img.b2bpic.net/free-photo/happiness-leisure-lifestyle-concept-smiling-african-american-female-recreates-cafe-restaurant-eats-delicious-dessert-drinks-cocktail-happy-have-pleasant-conversation-with-interlocutor_273609-2194.jpg" },
{ id: "t5", name: "Tomáš Kučera", imageSrc: "http://img.b2bpic.net/free-photo/young-bald-caucasian-man-pink-hoodie-isolated-positive-one-thumb-up-one-down_343596-4823.jpg" }
]}
cardTitle="Co říkají naši hosté"
cardTag="Recenze"
@@ -242,25 +137,10 @@ export default function LandingPage() {
title="Kontaktujte nás"
description="Máte dotaz nebo si chcete rezervovat stůl? Ozvěte se nám."
inputs={[
{
name: "jméno",
type: "text",
placeholder: "Vaše jméno",
required: true,
},
{
name: "email",
type: "email",
placeholder: "Váš e-mail",
required: true,
},
{ name: "jméno", type: "text", placeholder: "Vaše jméno", required: true },
{ name: "email", type: "email", placeholder: "Váš e-mail", required: true }
]}
textarea={{
name: "zpráva",
placeholder: "Vaše zpráva",
rows: 4,
required: true,
}}
textarea={{ name: "zpráva", placeholder: "Vaše zpráva", rows: 4, required: true }}
imageSrc="http://img.b2bpic.net/free-photo/cafe-sibiu-romania_1268-20583.jpg"
/>
</div>