Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b346ad9684 | |||
| 53441952f9 |
309
src/app/page.tsx
309
src/app/page.tsx
@@ -31,22 +31,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
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="Blue Bistro"
|
||||
/>
|
||||
@@ -54,59 +42,27 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "rotated-rays-animated",
|
||||
}}
|
||||
title="Culinary Excellence at Blue Bistro"
|
||||
description="Experience fine dining with fresh, seasonal ingredients in an elegant atmosphere."
|
||||
buttons={[
|
||||
{
|
||||
text: "Reserve a Table",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
title="Blue Bistro Prešov"
|
||||
description="Authentic flavors meets elegance. Discover our popular breakfast selection and exceptional service in the heart of Prešov."
|
||||
buttons={[{ text: "Reserve a Table", href: "#contact" }]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lamb-bone-covered-with-dough-finely-cooked_114579-2429.jpg",
|
||||
imageAlt: "Elegant dining table",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dark-pan-with-fried-egg-slices-brown-bread-wooden-board_114579-48170.jpg",
|
||||
imageAlt: "Fresh gourmet meal",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/waiter-is-serving-dinner-two-pretty-friends-women-elegant-restaurant_8353-10575.jpg",
|
||||
imageAlt: "Chic bistro interior",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-view-free-space-fresh-vegetables-fallen-oil-bottle-lemons-spices-green-bundles-black-table_140725-160496.jpg",
|
||||
imageAlt: "Creative dish plating",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/event-hall-furniture-brown-white-colors_114579-2230.jpg",
|
||||
imageAlt: "Fine wine pouring",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-stuffed-chicken-rolls-with-vegetable-herbs-served-with-orange-slices-cherry-tomatoes-platter_140725-12054.jpg",
|
||||
imageAlt: "Vibrant bistro vibe",
|
||||
},
|
||||
{ id: "1", imageSrc: "http://img.b2bpic.net/free-photo/lamb-bone-covered-with-dough-finely-cooked_114579-2429.jpg" },
|
||||
{ id: "2", imageSrc: "http://img.b2bpic.net/free-photo/dark-pan-with-fried-egg-slices-brown-bread-wooden-board_114579-48170.jpg" },
|
||||
{ id: "3", imageSrc: "http://img.b2bpic.net/free-photo/waiter-is-serving-dinner-two-pretty-friends-women-elegant-restaurant_8353-10575.jpg" },
|
||||
{ id: "4", imageSrc: "http://img.b2bpic.net/free-photo/horizontal-view-free-space-fresh-vegetables-fallen-oil-bottle-lemons-spices-green-bundles-black-table_140725-160496.jpg" },
|
||||
{ id: "5", imageSrc: "http://img.b2bpic.net/free-photo/event-hall-furniture-brown-white-colors_114579-2230.jpg" },
|
||||
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/side-view-stuffed-chicken-rolls-with-vegetable-herbs-served-with-orange-slices-cherry-tomatoes-platter_140725-12054.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TextSplitAbout
|
||||
title="Discover Our Story"
|
||||
useInvertedBackground={false}
|
||||
title="Our Passion for Fine Dining"
|
||||
description={[
|
||||
"At Blue Bistro, we curate an exceptional gastronomic experience through seasonal ingredients and masterful preparation. Every dish tells a story of quality and tradition.",
|
||||
"From intimate dinners to celebratory gatherings, our chefs deliver excellence on every plate, ensuring each visit is unforgettable.",
|
||||
"Located at Tkáčska 8717, 080 01 Prešov, Blue Bistro is a culinary destination known for its welcoming atmosphere and exceptional service.", "Whether you are stopping by for our famous breakfast dishes or a relaxing dinner, our team is dedicated to providing you with the highest quality of service and an unforgettable experience."
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -117,39 +73,12 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "f1",
|
||||
label: "Ingredients",
|
||||
title: "Farm to Table",
|
||||
items: [
|
||||
"Fresh local produce",
|
||||
"Organic sourced meats",
|
||||
"Artisanal bakery items",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
label: "Ambiance",
|
||||
title: "Refined Atmosphere",
|
||||
items: [
|
||||
"Elegant modern decor",
|
||||
"Soft ambient lighting",
|
||||
"Intimate seating areas",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
label: "Service",
|
||||
title: "Exemplary Staff",
|
||||
items: [
|
||||
"Personalized service",
|
||||
"Knowledgeable sommeliers",
|
||||
"Attentive dinner support",
|
||||
],
|
||||
},
|
||||
{ id: "f1", label: "Highlights", title: "Popular Breakfast", items: ["Farm-fresh eggs", "Artisanal pastries", "Organic seasonal fruits"] },
|
||||
{ id: "f2", label: "Experience", title: "Exceptional Service", items: ["Friendly, attentive staff", "Cozy atmosphere", "Perfect for any occasion"] },
|
||||
{ id: "f3", label: "Reputation", title: "Guest Satisfaction", items: ["4.9-star rating", "Consistent quality", "Loved by locals"] }
|
||||
]}
|
||||
title="Why Choose Us"
|
||||
description="We offer more than just a meal – we provide an elevated culinary journey."
|
||||
title="Why We Are Loved"
|
||||
description="We pride ourselves on our consistent 4.9-star reputation, driven by guest feedback and a passion for hospitality."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -159,211 +88,61 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Seafood Platter",
|
||||
price: "$45",
|
||||
variant: "Signature",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fruit-salad-with-bananas-strawberries-mandarins-oranges-pears_141793-755.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Garden Salad",
|
||||
price: "$18",
|
||||
variant: "Seasonal",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/foie-gras-with-vegetable-salad_1203-9262.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Roasted Chicken",
|
||||
price: "$32",
|
||||
variant: "Main",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-chicken-breast-with-potato-greens-spices-sauces-side-view_141793-3739.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Artisan Steak",
|
||||
price: "$58",
|
||||
variant: "Signature",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-front-view-grilled-meat-with-vegetables-lettuce-with-grated-cheese-plate_141793-2811.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Creamy Pasta",
|
||||
price: "$28",
|
||||
variant: "Main",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-delicious-pasta-meal-blue-plate-served-with-tomato-meat-dinner-tan-color-towel-its-ingredients_140725-143859.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Dark Chocolate Tart",
|
||||
price: "$15",
|
||||
variant: "Dessert",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brownie-plate-table_140725-2351.jpg",
|
||||
},
|
||||
]}
|
||||
title="Our Signature Dishes"
|
||||
description="Discover the culinary artistry crafted by our award-winning chef team."
|
||||
products={[]}
|
||||
title="Signature Breakfasts & Dishes"
|
||||
description="Join us for our popular breakfast specials, prepared daily with care."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
title="Voices of Our Guests"
|
||||
description="With a 4.9-star average, our guests consistently highlight our impeccable service and warm bistro atmosphere."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
title: "Wonderful Evening",
|
||||
quote: "The food was spectacular and the service was beyond my expectations.",
|
||||
name: "Alice R.",
|
||||
role: "Regular Guest",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-presents-girl-ring_1398-4220.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
title: "True Culinary Art",
|
||||
quote: "I have traveled everywhere, and this bistro stands out with authentic flavors.",
|
||||
name: "Marcus L.",
|
||||
role: "Food Critic",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-eating-donut-talking-her-boyfriend-cafe_637285-9080.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
title: "Perfect for Anniversaries",
|
||||
quote: "We celebrated our 10th anniversary here, and everything was perfectly arranged.",
|
||||
name: "Elena M.",
|
||||
role: "Happy Couple",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-lovely-couple-hugging_23-2148060606.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
title: "Simply Elegant",
|
||||
quote: "The ambiance is just stunning, making it my favorite spot in the city.",
|
||||
name: "David W.",
|
||||
role: "Business Professional",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-composition-delicious-food_23-2148948992.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
title: "Deliciously Fresh",
|
||||
quote: "Freshness in every bite. Truly farm-to-table excellence.",
|
||||
name: "Sarah P.",
|
||||
role: "Local Foodie",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-restaurant_23-2148006698.jpg",
|
||||
},
|
||||
]}
|
||||
title="What Our Guests Say"
|
||||
description="Hear from our patrons who cherish their Blue Bistro experience."
|
||||
useInvertedBackground={false}
|
||||
testimonials={[]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardFourteen
|
||||
useInvertedBackground={false}
|
||||
title="Milestones We Celebrate"
|
||||
tag="Our Impact"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "15,000+",
|
||||
description: "Happy Guests Served",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "20",
|
||||
description: "Expert Chefs Working",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "5",
|
||||
description: "Culinary Awards Won",
|
||||
},
|
||||
]}
|
||||
tag="Our Success"
|
||||
title="Our Community Impact"
|
||||
metrics={[{ id: "m1", value: "4.9*", description: "Average Guest Rating" }, { id: "m2", value: "10k+", description: "Satisfied Diners" }, { id: "m3", value: "100%", description: "Fresh Ingredients" }]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq1",
|
||||
title: "Do I need a reservation?",
|
||||
content: "Yes, we highly recommend booking in advance, especially during weekends.",
|
||||
},
|
||||
{
|
||||
id: "faq2",
|
||||
title: "Do you have vegetarian options?",
|
||||
content: "Absolutely, we have a curated selection of plant-based dishes.",
|
||||
},
|
||||
{
|
||||
id: "faq3",
|
||||
title: "Is parking available?",
|
||||
content: "Valet parking is available right at our entrance.",
|
||||
},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Have questions? We have the answers."
|
||||
title="Common Questions"
|
||||
description="Information to help you plan your visit to Blue Bistro."
|
||||
faqs={[{ id: "faq1", title: "Where are you located?", content: "We are at Tkáčska 8717, 080 01 Prešov." }, { id: "faq2", title: "How do I book?", content: "Visit bistro.sk to make a reservation or call us at 0948 649 980." }]}
|
||||
faqsAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Contact Us"
|
||||
title="Visit Blue Bistro Today"
|
||||
description="We look forward to serving you in Prešov! Contact us at 0948 649 980 or visit bistro.sk for more info."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Reservations"
|
||||
title="Book Your Experience"
|
||||
description="Ready to dine? Reach out today to secure your table."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us Now",
|
||||
href: "mailto:hello@bluebistro.com",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Book Now", href: "https://bistro.sk" }, { text: "Call Us", href: "tel:0948649980" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Visit Us", items: [{ label: "Tkáčska 8717, Prešov", href: "#" }] }, { title: "Contact", items: [{ label: "0948 649 980", href: "tel:0948649980" }, { label: "bistro.sk", href: "https://bistro.sk" }] }]}
|
||||
logoText="Blue Bistro"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user