diff --git a/src/app/page.tsx b/src/app/page.tsx
index 3875979..0344619 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -4,11 +4,14 @@ 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() {
@@ -18,25 +21,6 @@ export default function LandingPage() {
setLang((prev) => (prev === "EN" ? "AL" : prev === "AL" ? "IT" : "EN"));
};
- const getTranslatedMenu = () => {
- const menu = [
- { id: "1", brand: { EN: "Pizza", AL: "Picë", IT: "Pizza" }, name: { EN: "Margherita Classica", AL: "Margherita Klasike", IT: "Margherita Classica" }, price: "800 ALL", img: "http://img.b2bpic.net/free-photo/turkish-street-food-lahmacun-with-lemon-fresh-parsley-melted-cheese-top_114579-4348.jpg" },
- { id: "2", brand: { EN: "Pasta", AL: "Pastë", IT: "Pasta" }, name: { EN: "Carbonara Oro", AL: "Carbonara e Artë", IT: "Carbonara d'Oro" }, price: "1200 ALL", img: "http://img.b2bpic.net/free-photo/close-up-cheesy-spaghetti-pasta-white-ceramic-plate_23-2148246792.jpg" },
- { id: "3", brand: { EN: "Pasta", AL: "Pastë", IT: "Pasta" }, name: { EN: "Tagliatelle al Tartufo", AL: "Tagliatelle me Tartuf", IT: "Tagliatelle al Tartufo" }, price: "1600 ALL", img: "http://img.b2bpic.net/free-photo/fettuccine-funghi-table_140725-8235.jpg" },
- { id: "4", brand: { EN: "Dessert", AL: "Ëmbëlsirë", IT: "Dolce" }, name: { EN: "Tiramisu della Casa", AL: "Tiramisu e Shtëpisë", IT: "Tiramisù della Casa" }, price: "500 ALL", img: "http://img.b2bpic.net/free-photo/tiramisu-piece-with-coffee-beans_23-2148531561.jpg" },
- { id: "5", brand: { EN: "Antipasti", AL: "Antipasta", IT: "Antipasti" }, name: { EN: "Caprese Moderna", AL: "Caprese Moderne", IT: "Caprese Moderna" }, price: "700 ALL", img: "http://img.b2bpic.net/free-photo/plate-with-mozzarella-cheese-tomatoes_23-2149460148.jpg" },
- { 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 => ({
- id: item.id,
- brand: item.brand[lang as keyof typeof item.brand],
- name: item.name[lang as keyof typeof item.name],
- price: item.price,
- rating: 5,
- reviewCount: "100+", imageSrc: item.img
- }));
- };
-
return (