diff --git a/src/app/page.tsx b/src/app/page.tsx index 38ab947..f3ef028 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,14 +2,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; -import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import FooterBase from '@/components/sections/footer/FooterBase'; import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; -import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; -import { Award } from "lucide-react"; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import { Award, Star } from "lucide-react"; export default function LandingPage() { return ( @@ -29,26 +29,11 @@ export default function LandingPage() { @@ -88,114 +68,51 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} features={[ - { - id: 1, - tag: "Meat", - title: "Carni Mugellane", - subtitle: "Our Pride", - description: "Succulent, top-quality meat dishes prepared with ancestral techniques from the Mugello region.", - imageSrc: "http://img.b2bpic.net/free-photo/side-view-xengel-with-fried-minced-fried-onion-human-hand-round-plate_176474-3258.jpg", - }, - { - id: 2, - tag: "Pasta", - title: "Cucina della Nonna", - subtitle: "Heartwarming", - description: "Fresh, handmade pasta dishes that bring back the comfort of grandmothers' Sunday lunches.", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-raw-italian-pastas-from-gray-purse-right-side-blue-background_140725-130967.jpg", - }, - { - id: 3, - tag: "Dolci", - title: "Traditional Desserts", - subtitle: "A Sweet End", - description: "Authentic Tuscan sweets and cakes that are an absolute must-try to complete your meal.", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-appetizing-pie-slice_23-2148243537.jpg", - }, + { id: 1, tag: "Meat", title: "Carni Mugellane", subtitle: "Our Pride", description: "Succulent, top-quality meat dishes prepared with ancestral techniques.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-xengel-with-fried-minced-fried-onion-human-hand-round-plate_176474-3258.jpg" }, + { id: 2, tag: "Pasta", title: "Cucina della Nonna", subtitle: "Heartwarming", description: "Fresh, handmade pasta dishes that bring back the comfort of Sunday lunches.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-raw-italian-pastas-from-gray-purse-right-side-blue-background_140725-130967.jpg" }, ]} title="Discover Traditional Flavors" - description="Experience our carefully curated menu rooted in Mugello history and Tuscan culinary heritage." + description="Experience our curated menu rooted in Mugello history and Tuscan culinary heritage." />
-
-
); -} +} \ No newline at end of file