|
|
|
|
@@ -3,10 +3,11 @@
|
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
|
|
|
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
|
|
|
|
import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
|
|
|
|
|
import TextAbout from '@/components/sections/about/TextAbout';
|
|
|
|
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
|
|
|
|
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
|
|
|
|
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
|
|
|
|
|
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
|
|
|
|
import ContactText from '@/components/sections/contact/ContactText';
|
|
|
|
|
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
|
|
|
|
import { Sparkles } from "lucide-react";
|
|
|
|
|
@@ -57,24 +58,12 @@ export default function LandingPage() {
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="about" data-section="about">
|
|
|
|
|
<MediaSplitTabsAbout
|
|
|
|
|
title="Our Story"
|
|
|
|
|
description="At Bella Italia, we honor the rich culinary traditions of Italy while celebrating the art of fine dining."
|
|
|
|
|
tabs={[
|
|
|
|
|
{
|
|
|
|
|
id: "heritage", label: "Heritage", description: "Our restaurant is built on a foundation of authentic Italian recipes passed down through generations. Every dish tells a story of tradition, craftsmanship, and love for food."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "ingredients", label: "Ingredients", description: "We source only the finest ingredients directly from Italian suppliers. From San Marzano tomatoes to fresh mozzarella di bufala, quality is our commitment."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "chef", label: "Our Chef", description: "Chef Marco has over 20 years of experience in Tuscan cuisine. His passion for authentic Italian cooking brings each dish to life with precision and artistry."
|
|
|
|
|
}
|
|
|
|
|
]}
|
|
|
|
|
imageSrc="https://img.b2bpic.net/free-photo/man-chef-cooking-asian-chicken-cafe-kitchen_1303-32155.jpg"
|
|
|
|
|
imageAlt="Chef Marco in the kitchen"
|
|
|
|
|
imagePosition="right"
|
|
|
|
|
<TextAbout
|
|
|
|
|
title="At Bella Italia, we honor the rich culinary traditions of Italy while celebrating the art of fine dining. Every dish tells a story of tradition, craftsmanship, and love for food."
|
|
|
|
|
useInvertedBackground="invertDefault"
|
|
|
|
|
buttons={[
|
|
|
|
|
{ text: "Learn More", href: "#" }
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
@@ -100,6 +89,22 @@ export default function LandingPage() {
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="impact" data-section="impact">
|
|
|
|
|
<MetricCardFourteen
|
|
|
|
|
title="Celebrating Our Success"
|
|
|
|
|
tag="By The Numbers"
|
|
|
|
|
metrics={[
|
|
|
|
|
{
|
|
|
|
|
id: "1", value: "25+", description: "Years of excellence in authentic Italian cuisine and hospitality"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "2", value: "50,000+", description: "Happy customers who have enjoyed memorable dining experiences at Bella Italia"
|
|
|
|
|
}
|
|
|
|
|
]}
|
|
|
|
|
useInvertedBackground="noInvert"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
|
|
|
<TestimonialCardTen
|
|
|
|
|
title="What Our Guests Say"
|
|
|
|
|
@@ -162,4 +167,4 @@ export default function LandingPage() {
|
|
|
|
|
</div>
|
|
|
|
|
</ThemeProvider>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|