Update src/app/page.tsx

This commit is contained in:
2026-01-22 08:26:38 +00:00
parent d6c47dff3b
commit 5f3c4a494b

View File

@@ -4,12 +4,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import ContactFaq from '@/components/sections/contact/ContactFaq'; import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterBase from '@/components/sections/footer/FooterBase';
import { ChefHat, Clock, Heart, History, Leaf, Sparkles, Star, Wine } from 'lucide-react'; import { ChefHat, Clock, Heart, History, Leaf, Sparkles, Star, Wine, Package } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -78,27 +78,28 @@ export default function LandingPage() {
</div> </div>
<div id="features" data-section="features"> <div id="features" data-section="features">
<FeatureBorderGlow <ProductCardFour
title="What Makes Us Special" title="What Makes Us Special"
description="Discover the culinary excellence that sets La Bella Italia apart" description="Discover the culinary excellence that sets La Bella Italia apart"
features={[ products={[
{ {
icon: Leaf, id: "1", name: "Fresh Ingredients", price: "Daily Selection", variant: "Sourced from local farms and Italian importers", imageSrc: "https://img.b2bpic.net/free-photo/close-up-large-tube-pasta-with-chicken-cherry-tomato-with-chopped-parsley_141793-1840.jpg", imageAlt: "Fresh Italian ingredients"
title: "Fresh Ingredients", description: "Sourced daily from local farms and Italian importers. Every ingredient is selected for quality and authenticity to honor traditional recipes."
}, },
{ {
icon: ChefHat, id: "2", name: "Master Chef Expertise", price: "Premium Quality", variant: "Trained in Rome with decades of experience", imageSrc: "https://img.b2bpic.net/free-photo/chef-sitting-table_140725-5179.jpg", imageAlt: "Master chef at work"
title: "Master Chef Expertise", description: "Our executive chef trained in Rome and brings decades of culinary mastery. Traditional techniques meet modern presentation in every plate."
}, },
{ {
icon: Wine, id: "3", name: "Premium Wine Selection", price: "Curated Collection", variant: "Italian wines from renowned vineyards", imageSrc: "https://img.b2bpic.net/free-photo/red-wine-glass-wooden-table_1139-868.jpg", imageAlt: "Premium Italian wines"
title: "Premium Wine Selection", description: "Curated collection of Italian wines from renowned vineyards. Sommelier-selected pairings for an unforgettable dining experience." },
{
id: "4", name: "Elegant Ambiance", price: "Fine Dining", variant: "Warm and inviting atmosphere", imageSrc: "https://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg", imageAlt: "Restaurant dining ambiance"
} }
]} ]}
tag="Our Excellence" tag="Our Excellence"
tagIcon={Sparkles} tagIcon={Sparkles}
animationType="slide-up"
textboxLayout="default" textboxLayout="default"
animationType="slide-up"
gridVariant="uniform-all-items-equal"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
/> />
</div> </div>