Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bcd8e031b4 | |||
| 6515618982 | |||
| f11f6aea50 |
175
src/app/page.tsx
175
src/app/page.tsx
@@ -31,25 +31,15 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Bistro",
|
name: "Bistro", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Menu",
|
name: "Menu", id: "products"},
|
||||||
id: "products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Love",
|
name: "Love", id: "testimonials"},
|
||||||
id: "testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Visit",
|
name: "Visit", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Eleven Kultúrbisztró"
|
brandName="Eleven Kultúrbisztró"
|
||||||
/>
|
/>
|
||||||
@@ -58,41 +48,26 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardRotatedCarousel
|
<HeroBillboardRotatedCarousel
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
title="Eleven Kultúrbisztró"
|
title="Eleven Kultúrbisztró"
|
||||||
description="Artistic vibes, world-class coffee, and culinary delights in the heart of Kaposvár."
|
description="Artistic vibes, world-class coffee, and culinary delights in the heart of Kaposvár."
|
||||||
|
buttons={[
|
||||||
|
{ text: "Book a Table", href: "#contact" },
|
||||||
|
{ text: "Explore Menu", href: "#products" }
|
||||||
|
]}
|
||||||
carouselItems={[
|
carouselItems={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-woman-using-digital-tablet-restaurant-table_23-2147936094.jpg", imageAlt: "Luxurious bistro atmosphere"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-woman-using-digital-tablet-restaurant-table_23-2147936094.jpg",
|
|
||||||
imageAlt: "Luxurious bistro atmosphere",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/luxury-bar-illuminated-by-modern-lighting-equipment-generated-by-ai_188544-24181.jpg", imageAlt: "Gourmet food presentation"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/luxury-bar-illuminated-by-modern-lighting-equipment-generated-by-ai_188544-24181.jpg",
|
|
||||||
imageAlt: "Gourmet food presentation",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/high-end-professional-cabinet-used-psychotherapy-meetings_482257-117710.jpg", imageAlt: "Cozy cafe setting"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/high-end-professional-cabinet-used-psychotherapy-meetings_482257-117710.jpg",
|
|
||||||
imageAlt: "Cozy cafe setting",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/food-celebrating-world-tapas-day_23-2149361477.jpg", imageAlt: "Artistic beverage craft"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/food-celebrating-world-tapas-day_23-2149361477.jpg",
|
|
||||||
imageAlt: "Artistic beverage craft",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/crom-men-enjoying-dessert-cafe_23-2147775905.jpg", imageAlt: "Exquisite dessert plating"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/crom-men-enjoying-dessert-cafe_23-2147775905.jpg",
|
|
||||||
imageAlt: "Exquisite dessert plating",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/person-cafe-enjoying-book_23-2150064702.jpg", imageAlt: "Warm bistro decor"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/person-cafe-enjoying-book_23-2150064702.jpg",
|
|
||||||
imageAlt: "Warm bistro decor",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -104,19 +79,13 @@ export default function LandingPage() {
|
|||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
icon: Coffee,
|
icon: Coffee,
|
||||||
label: "Coffee Quality",
|
label: "Specialty Beans", value: "100%"},
|
||||||
value: "100%",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Heart,
|
icon: Heart,
|
||||||
label: "Customer Love",
|
label: "Customer Love", value: "98%"},
|
||||||
value: "98%",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Sparkles,
|
icon: Sparkles,
|
||||||
label: "Cozy Atmosphere",
|
label: "Cozy Atmosphere", value: "24/7"},
|
||||||
value: "24/7",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -130,41 +99,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Signature Espresso", price: "Best in Town", imageSrc: "http://img.b2bpic.net/free-photo/coffee-paper-cups-with-coffee-beans-dark-background-pattern-creative-background-concept-cafes_493343-30024.jpg"},
|
||||||
name: "Signature Espresso",
|
|
||||||
price: "Best in Town",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/coffee-paper-cups-with-coffee-beans-dark-background-pattern-creative-background-concept-cafes_493343-30024.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Spiced Chai Latte", price: "A Big Plus", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-with-coffee-cup_23-2150244119.jpg"},
|
||||||
name: "Spiced Chai Latte",
|
|
||||||
price: "A Big Plus",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-with-coffee-cup_23-2150244119.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Indulgent Cookies", price: "Freshly Baked", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-round-biscuits-with-raspberry-confitures-white-space_140725-79302.jpg"},
|
||||||
name: "Indulgent Cookies",
|
|
||||||
price: "Freshly Baked",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-round-biscuits-with-raspberry-confitures-white-space_140725-79302.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Artisan Bistro Salad", price: "Fresh Harvest", imageSrc: "http://img.b2bpic.net/free-photo/pear-slices-served-with-green-olives-herbs_114579-76345.jpg"},
|
||||||
name: "Artisan Bistro Salad",
|
|
||||||
price: "Fresh Harvest",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/pear-slices-served-with-green-olives-herbs_114579-76345.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Daily Pastry Selection", price: "Artistic Craft", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-chocolate-dessert_23-2149452274.jpg"},
|
||||||
name: "Daily Pastry Selection",
|
|
||||||
price: "Artistic Craft",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-chocolate-dessert_23-2149452274.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", name: "Chef's Daily Special", price: "Gourmet Joy", imageSrc: "http://img.b2bpic.net/free-photo/woman-cutting-sesame-crusted-chicken-served-with-salad_140725-5272.jpg"},
|
||||||
name: "Chef's Daily Special",
|
|
||||||
price: "Gourmet Joy",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cutting-sesame-crusted-chicken-served-with-salad_140725-5272.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Culinary Delights"
|
title="Culinary Delights"
|
||||||
description="From world-class espresso to indulgent desserts, experience the best of Kaposvár."
|
description="From world-class espresso to indulgent desserts, experience the best of Kaposvár."
|
||||||
@@ -177,20 +122,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Cozy Artistic Vibe",
|
title: "Cozy Artistic Vibe", description: "Our pretty, welcoming space is designed for comfort and creative inspiration.", imageSrc: "http://img.b2bpic.net/free-photo/teen-girls-writing-notebooks-cafe_23-2147860799.jpg"},
|
||||||
description: "Our pretty, welcoming space is designed for comfort and creative inspiration.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/teen-girls-writing-notebooks-cafe_23-2147860799.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "First-Class Service",
|
title: "First-Class Service", description: "Smiling faces, helpful staff, and a warm approach to every guest we serve.", imageSrc: "http://img.b2bpic.net/free-photo/i-will-eat-first-i-have-photo_329181-2909.jpg"},
|
||||||
description: "Smiling faces, helpful staff, and a warm approach to every guest we serve.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/i-will-eat-first-i-have-photo_329181-2909.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Gourmet Culinary Craft",
|
title: "Gourmet Culinary Craft", description: "Expertly prepared food and drinks that combine quality ingredients with culinary art.", imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-fried-zucchini-front-view_23-2148516903.jpg"},
|
||||||
description: "Expertly prepared food and drinks that combine quality ingredients with culinary art.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-fried-zucchini-front-view_23-2148516903.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="More Than Just A Café"
|
title="More Than Just A Café"
|
||||||
description="Eleven Kultúrbisztró offers an artistic sanctuary for your morning coffee, midday break, or evening unwind."
|
description="Eleven Kultúrbisztró offers an artistic sanctuary for your morning coffee, midday break, or evening unwind."
|
||||||
@@ -205,25 +141,15 @@ export default function LandingPage() {
|
|||||||
author="Kaposvár Traveler"
|
author="Kaposvár Traveler"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/girl-drawing-cup-coffee-notebook_158595-664.jpg",
|
src: "http://img.b2bpic.net/free-photo/girl-drawing-cup-coffee-notebook_158595-664.jpg", alt: "Customer One"},
|
||||||
alt: "Customer One",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/samesex-homosexual-female-partners-drinking-coffee-eating-cakes-restaurant_273609-9461.jpg",
|
src: "http://img.b2bpic.net/free-photo/samesex-homosexual-female-partners-drinking-coffee-eating-cakes-restaurant_273609-9461.jpg", alt: "Customer Two"},
|
||||||
alt: "Customer Two",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg",
|
src: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg", alt: "Customer Three"},
|
||||||
alt: "Customer Three",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/two-female-friends-cafe_23-2148721131.jpg",
|
src: "http://img.b2bpic.net/free-photo/two-female-friends-cafe_23-2148721131.jpg", alt: "Customer Four"},
|
||||||
alt: "Customer Four",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-interracial-young-couple-sitting-outdoor-cafe_23-2148151923.jpg",
|
src: "http://img.b2bpic.net/free-photo/portrait-interracial-young-couple-sitting-outdoor-cafe_23-2148151923.jpg", alt: "Customer Five"},
|
||||||
alt: "Customer Five",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
ratingAnimation="blur-reveal"
|
ratingAnimation="blur-reveal"
|
||||||
avatarsAnimation="blur-reveal"
|
avatarsAnimation="blur-reveal"
|
||||||
@@ -234,14 +160,11 @@ export default function LandingPage() {
|
|||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "rotated-rays-animated",
|
variant: "rotated-rays-animated"}}
|
||||||
}}
|
|
||||||
text="Join us at Eleven Kultúrbisztró today. Experience Kaposvár's best coffee in an environment that feels like home."
|
text="Join us at Eleven Kultúrbisztró today. Experience Kaposvár's best coffee in an environment that feels like home."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Visit Us",
|
text: "Visit Us", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -250,33 +173,21 @@ export default function LandingPage() {
|
|||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Bistro",
|
title: "Bistro", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About Us",
|
label: "About Us", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Our Menu",
|
label: "Our Menu", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Gallery",
|
label: "Gallery", href: "#hero"},
|
||||||
href: "#hero",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Visit",
|
title: "Visit", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Directions",
|
label: "Directions", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -287,4 +198,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user