Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
255
src/app/page.tsx
255
src/app/page.tsx
@@ -31,21 +31,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
name: "About", id: "about"},
|
||||
{
|
||||
name: "Products",
|
||||
id: "products",
|
||||
},
|
||||
name: "Products", id: "products"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Domáca Pekáreň"
|
||||
/>
|
||||
@@ -54,104 +46,61 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDoubleCarousel
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
variant: "sparkles-gradient"}}
|
||||
title="Domáca Pekáreň Košice"
|
||||
description="Tradičné recepty, čerstvé suroviny a láska k pečeniu. Objavte chuť pravého domáceho chleba v centre Košíc."
|
||||
leftCarouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-picture-white-delicious-christmas-cake-with-nuts-mandarine_181624-17966.jpg",
|
||||
imageAlt: "freshly baked sourdough bread loaf",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-picture-white-delicious-christmas-cake-with-nuts-mandarine_181624-17966.jpg", imageAlt: "freshly baked sourdough bread loaf"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cook-accurately-breaks-egg-make-dough-ingredients-cooking-flour-products-dough-bread-muffins-pie-pizza-dough-copy-space_639032-451.jpg",
|
||||
imageAlt: "baker hands kneading dough",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cook-accurately-breaks-egg-make-dough-ingredients-cooking-flour-products-dough-bread-muffins-pie-pizza-dough-copy-space_639032-451.jpg", imageAlt: "baker hands kneading dough"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-cinnamon-rolls-assortment_23-2148904686.jpg",
|
||||
imageAlt: "assorted morning pastries display",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-cinnamon-rolls-assortment_23-2148904686.jpg", imageAlt: "assorted morning pastries display"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bread-near-rope-nuts_23-2147851943.jpg",
|
||||
imageAlt: "fresh baked baguette baskets",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bread-near-rope-nuts_23-2147851943.jpg", imageAlt: "fresh baked baguette baskets"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blackboard-near-mother-daughter-with-gift_23-2147788253.jpg",
|
||||
imageAlt: "warm hearth bakery atmosphere",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blackboard-near-mother-daughter-with-gift_23-2147788253.jpg", imageAlt: "warm hearth bakery atmosphere"},
|
||||
]}
|
||||
rightCarouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/christmas-cake-objects_23-2147715332.jpg",
|
||||
imageAlt: "authentic sourdough loaf close up",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/christmas-cake-objects_23-2147715332.jpg", imageAlt: "authentic sourdough loaf close up"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379534.jpg",
|
||||
imageAlt: "fresh baked baguette baskets",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379534.jpg", imageAlt: "fresh baked baguette baskets"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/eggs-flour-rolling-pin-forms-biscuits_23-2147962781.jpg",
|
||||
imageAlt: "authentic sourdough loaf close up",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/eggs-flour-rolling-pin-forms-biscuits_23-2147962781.jpg", imageAlt: "authentic sourdough loaf close up"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/event-meal-service-plate-restaurant_1203-5106.jpg",
|
||||
imageAlt: "assorted morning pastries display",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/event-meal-service-plate-restaurant_1203-5106.jpg", imageAlt: "assorted morning pastries display"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/different-types-bread-bakery-shelves_116380-61.jpg",
|
||||
imageAlt: "warm hearth bakery atmosphere",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/different-types-bread-bakery-shelves_116380-61.jpg", imageAlt: "warm hearth bakery atmosphere"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Navštívte nás",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Navštívte nás", href: "#contact"},
|
||||
]}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/female-glazing-dough-with-mum-wooden-table-top-view_176474-5458.jpg",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/female-glazing-dough-with-mum-wooden-table-top-view_176474-5458.jpg", alt: "Customer 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-putting-whole-homemade-bread-with-hands-brown-towel-flour-bread_114579-2633.jpg",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/woman-putting-whole-homemade-bread-with-hands-brown-towel-flour-bread_114579-2633.jpg", alt: "Customer 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/chef-making-pastries-using-dough_23-2148742193.jpg",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/chef-making-pastries-using-dough_23-2148742193.jpg", alt: "Customer 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/dough-inside-round-pan-with-cook-spreading-pieces-it-inside-kitchen_140725-14920.jpg",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/dough-inside-round-pan-with-cook-spreading-pieces-it-inside-kitchen_140725-14920.jpg", alt: "Customer 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/cook-accurately-breaks-egg-make-dough-ingredients-cooking-flour-products-dough-bread-muffins-pie-pizza-dough-copy-space_639032-453.jpg",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/cook-accurately-breaks-egg-make-dough-ingredients-cooking-flour-products-dough-bread-muffins-pie-pizza-dough-copy-space_639032-453.jpg", alt: "Customer 5"},
|
||||
]}
|
||||
avatarText="Pridajte sa k tisíckam spokojných zákazníkov"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Domáci kvások",
|
||||
},
|
||||
type: "text", text: "Domáci kvások"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Čerstvé suroviny",
|
||||
},
|
||||
type: "text", text: "Čerstvé suroviny"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Tradičná receptúra",
|
||||
},
|
||||
type: "text", text: "Tradičná receptúra"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Košická kvalita",
|
||||
},
|
||||
type: "text", text: "Košická kvalita"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Pečené s láskou",
|
||||
},
|
||||
type: "text", text: "Pečené s láskou"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -160,7 +109,6 @@ export default function LandingPage() {
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="O nás"
|
||||
description="V srdci Košíc prinášame vôňu tradície. Naša pekáreň stavia na remeselnej zručnosti, poctivom kvásku a lokálnych surovinách, ktoré robia každý bochník jedinečným."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -172,47 +120,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Ražný chlieb",
|
||||
price: "2,50 €",
|
||||
variant: "Kus",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-bread-ingredients_23-2149395314.jpg",
|
||||
},
|
||||
id: "p1", name: "Ražný chlieb", price: "2,50 €", variant: "Kus", imageSrc: "http://img.b2bpic.net/free-photo/top-view-bread-ingredients_23-2149395314.jpg"},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Croissant",
|
||||
price: "1,20 €",
|
||||
variant: "Kus",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-cartoon-honey-drips-splashes_23-2151705831.jpg",
|
||||
},
|
||||
id: "p2", name: "Croissant", price: "1,20 €", variant: "Kus", imageSrc: "http://img.b2bpic.net/free-photo/3d-cartoon-honey-drips-splashes_23-2151705831.jpg"},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Ovocný dánsky koláč",
|
||||
price: "1,50 €",
|
||||
variant: "Kus",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-cakes-supermarket-shelves-sale_627829-7332.jpg",
|
||||
},
|
||||
id: "p3", name: "Ovocný dánsky koláč", price: "1,50 €", variant: "Kus", imageSrc: "http://img.b2bpic.net/free-photo/various-cakes-supermarket-shelves-sale_627829-7332.jpg"},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Domáci toastový chlieb",
|
||||
price: "1,80 €",
|
||||
variant: "Kus",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-homemade-bread-tied-with-rope-stone-surface_114579-47657.jpg",
|
||||
},
|
||||
id: "p4", name: "Domáci toastový chlieb", price: "1,80 €", variant: "Kus", imageSrc: "http://img.b2bpic.net/free-photo/fresh-homemade-bread-tied-with-rope-stone-surface_114579-47657.jpg"},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Celozrnný bochník",
|
||||
price: "2,20 €",
|
||||
variant: "Kus",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-baked-loaves-composition_23-2147761318.jpg",
|
||||
},
|
||||
id: "p5", name: "Celozrnný bochník", price: "2,20 €", variant: "Kus", imageSrc: "http://img.b2bpic.net/free-photo/delicious-baked-loaves-composition_23-2147761318.jpg"},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Brioška",
|
||||
price: "1,10 €",
|
||||
variant: "Kus",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-freshly-baked-traditional-bread-with-oranges-lemons-knife_181624-11858.jpg",
|
||||
},
|
||||
id: "p6", name: "Brioška", price: "1,10 €", variant: "Kus", imageSrc: "http://img.b2bpic.net/free-photo/top-view-freshly-baked-traditional-bread-with-oranges-lemons-knife_181624-11858.jpg"},
|
||||
]}
|
||||
title="Naše Produkty"
|
||||
description="Všetky naše produkty pečieme každý deň čerstvé."
|
||||
@@ -226,20 +144,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Lokálne suroviny",
|
||||
description: "Spolupracujeme len s lokálnymi farmármi v okolí Košíc.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379551.jpg",
|
||||
},
|
||||
title: "Lokálne suroviny", description: "Spolupracujeme len s lokálnymi farmármi v okolí Košíc.", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379551.jpg"},
|
||||
{
|
||||
title: "Bez umelých prísad",
|
||||
description: "Všetko pečieme bez konzervantov a umelých farbív.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/variety-delicious-cooked-pastries_23-2148361905.jpg",
|
||||
},
|
||||
title: "Bez umelých prísad", description: "Všetko pečieme bez konzervantov a umelých farbív.", imageSrc: "http://img.b2bpic.net/free-photo/variety-delicious-cooked-pastries_23-2148361905.jpg"},
|
||||
{
|
||||
title: "Tradičný postup",
|
||||
description: "Naše kváskové cesto zreje minimálne 24 hodín.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/homemade-loaf-artisan-sourdough-bread-cutting-board-knife-gray-concrete-background-view-reconciliation-with-space-text_166373-2965.jpg",
|
||||
},
|
||||
title: "Tradičný postup", description: "Naše kváskové cesto zreje minimálne 24 hodín.", imageSrc: "http://img.b2bpic.net/free-photo/homemade-loaf-artisan-sourdough-bread-cutting-board-knife-gray-concrete-background-view-reconciliation-with-space-text_166373-2965.jpg"},
|
||||
]}
|
||||
title="Prečo si vybrať našu pekáreň?"
|
||||
description="Kvalita, lokálne suroviny a tradičný postup."
|
||||
@@ -254,45 +163,20 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Anna K.",
|
||||
role: "Stály zákazník",
|
||||
company: "Košice",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-beautiful-housewife-pink-shirt-colorful-cape-happy-smiling-holding-bakeries-smiling_140725-14872.jpg",
|
||||
},
|
||||
id: "1", name: "Anna K.", role: "Stály zákazník", company: "Košice", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-beautiful-housewife-pink-shirt-colorful-cape-happy-smiling-holding-bakeries-smiling_140725-14872.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Peter M.",
|
||||
role: "Dôchodca",
|
||||
company: "Košice",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-stylish-attractive-woman-yellow-blouse-blue_285396-1854.jpg",
|
||||
},
|
||||
id: "2", name: "Peter M.", role: "Dôchodca", company: "Košice", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-stylish-attractive-woman-yellow-blouse-blue_285396-1854.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Jana B.",
|
||||
role: "Mamička",
|
||||
company: "Košice",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-woman-showing-eclairs-bakery-counter_23-2148189123.jpg",
|
||||
},
|
||||
id: "3", name: "Jana B.", role: "Mamička", company: "Košice", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-woman-showing-eclairs-bakery-counter_23-2148189123.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Tomáš R.",
|
||||
role: "Študent",
|
||||
company: "Košice",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-male-gardener-wearing-gardening-hat-holds-pumpkin_141793-115831.jpg",
|
||||
},
|
||||
id: "4", name: "Tomáš R.", role: "Študent", company: "Košice", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-male-gardener-wearing-gardening-hat-holds-pumpkin_141793-115831.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Eva L.",
|
||||
role: "Turista",
|
||||
company: "Košice",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-bakery-owner-counter-with-croissant-talking-mobile-phone_23-2148189128.jpg",
|
||||
},
|
||||
id: "5", name: "Eva L.", role: "Turista", company: "Košice", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-bakery-owner-counter-with-croissant-talking-mobile-phone_23-2148189128.jpg"},
|
||||
]}
|
||||
title="Čo hovoria naši zákazníci?"
|
||||
description="Spokojnosť je naša najlepšia vizitka."
|
||||
@@ -304,14 +188,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Bakery Guild",
|
||||
"Košice Gourmet",
|
||||
"Organic Craft",
|
||||
"Traditional Baking Award",
|
||||
"Community Choice",
|
||||
"Daily Fresh Stamp",
|
||||
"Master Baker Seal",
|
||||
]}
|
||||
"Bakery Guild", "Košice Gourmet", "Organic Craft", "Traditional Baking Award", "Community Choice", "Daily Fresh Stamp", "Master Baker Seal"]}
|
||||
title="Kvalita, ktorej veríte"
|
||||
description="Naše certifikáty a ocenenia"
|
||||
/>
|
||||
@@ -324,15 +201,9 @@ export default function LandingPage() {
|
||||
description="Alvinczyho 6, 040 01 Košice | 0903 903 773"
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Vaše meno",
|
||||
},
|
||||
name: "name", type: "text", placeholder: "Vaše meno"},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Váš e-mail",
|
||||
},
|
||||
name: "email", type: "email", placeholder: "Váš e-mail"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/bakery-shop-gourmet-concept_53876-163311.jpg"
|
||||
/>
|
||||
@@ -343,37 +214,23 @@ export default function LandingPage() {
|
||||
logoText="Domáca Pekáreň"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigácia",
|
||||
items: [
|
||||
title: "Navigácia", items: [
|
||||
{
|
||||
label: "Domov",
|
||||
href: "#hero",
|
||||
},
|
||||
label: "Domov", href: "#hero"},
|
||||
{
|
||||
label: "Produkty",
|
||||
href: "#products",
|
||||
},
|
||||
label: "Produkty", href: "#products"},
|
||||
{
|
||||
label: "Kontakt",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Kontakt", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Informácie",
|
||||
items: [
|
||||
title: "Informácie", items: [
|
||||
{
|
||||
label: "O nás",
|
||||
href: "#about",
|
||||
},
|
||||
label: "O nás", href: "#about"},
|
||||
{
|
||||
label: "Otváracie hodiny",
|
||||
href: "#",
|
||||
},
|
||||
label: "Otváracie hodiny", href: "#"},
|
||||
{
|
||||
label: "Ochrana údajov",
|
||||
href: "#",
|
||||
},
|
||||
label: "Ochrana údajov", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user