diff --git a/src/app/page.tsx b/src/app/page.tsx index 5740bf4..3875979 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,14 +4,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import { useState } from "react"; import ContactText from '@/components/sections/contact/ContactText'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import MediaAbout from '@/components/sections/about/MediaAbout'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; export default function LandingPage() { @@ -31,10 +28,12 @@ export default function LandingPage() { { id: "6", brand: { EN: "Antipasti", AL: "Antipasta", IT: "Antipasti" }, name: { EN: "Tagliere Italiano", AL: "Tavolinë Italiane", IT: "Tagliere Italiano" }, price: "1500 ALL", img: "http://img.b2bpic.net/free-photo/antipasto-catering-platter-with-bacon-jerky-sausage-blue-cheese-grapes-wooden-table-top-view_2829-5496.jpg" } ]; return menu.map(item => ({ - ...item, + id: item.id, brand: item.brand[lang as keyof typeof item.brand], name: item.name[lang as keyof typeof item.name], - imageSrc: item.img + price: item.price, + rating: 5, + reviewCount: "100+", imageSrc: item.img })); };