3 Commits

Author SHA1 Message Date
727e99123a Update src/app/page.tsx 2026-02-10 04:39:07 +00:00
b003ca7e92 Update src/app/page.tsx 2026-02-10 04:33:10 +00:00
53ebda6695 Update src/app/layout.tsx 2026-02-10 04:33:09 +00:00
2 changed files with 25 additions and 20 deletions

View File

@@ -1260,4 +1260,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -3,10 +3,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroBillboard from '@/components/sections/hero/HeroBillboard'; 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 ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import ContactText from '@/components/sections/contact/ContactText'; import ContactText from '@/components/sections/contact/ContactText';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Sparkles } from "lucide-react"; import { Sparkles } from "lucide-react";
@@ -57,24 +58,12 @@ export default function LandingPage() {
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
<MediaSplitTabsAbout <TextAbout
title="Our Story" 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."
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"
useInvertedBackground="invertDefault" useInvertedBackground="invertDefault"
buttons={[
{ text: "Learn More", href: "#" }
]}
/> />
</div> </div>
@@ -100,6 +89,22 @@ export default function LandingPage() {
/> />
</div> </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"> <div id="testimonials" data-section="testimonials">
<TestimonialCardTen <TestimonialCardTen
title="What Our Guests Say" title="What Our Guests Say"
@@ -162,4 +167,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }