diff --git a/src/app/page.tsx b/src/app/page.tsx
index 2421883..e513fdd 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,6 +2,8 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
+import { useState } from "react";
+import { X, ExternalLink } from "lucide-react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
@@ -15,6 +17,15 @@ import TextAbout from '@/components/sections/about/TextAbout';
import { Clock, Flame, MapPin, MessageSquare, Star } from "lucide-react";
export default function LandingPage() {
+ const [isMenuOpen, setIsMenuOpen] = useState(false);
+
+ const menuItems = [
+ { name: "Kebab Clásico", price: "5.50€" },
+ { name: "Dürum de Pollo", price: "6.00€" },
+ { name: "Pita Falafel", price: "5.00€" },
+ { name: "Pizza Barbacoa", price: "8.00€" },
+ ];
+
return (
+ {isMenuOpen && (
+
+
+
+
Nuestra Carta
+
+
+
+ {menuItems.map((item, idx) => (
+ -
+ {item.name}
+ {item.price}
+
+ ))}
+
+
+
+ )}
@@ -48,114 +77,43 @@ export default function LandingPage() {
description="El kebab de barrio más querido de Barcelona. Sabor real, precio honesto, abierto hasta tarde para ti."
leftCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/turkish-doner-inside-round-bread-with-french-fries-yogurt_114579-1423.jpg", imageAlt: "Kebab rotisserie" },
- { imageSrc: "http://img.b2bpic.net/free-photo/shaurma-with-meat-marinated-food_114579-2122.jpg", imageAlt: "Durum chicken" },
]}
rightCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/lule-kebab-fried-potato-with-vegetables-onion_141793-688.jpg", imageAlt: "Kebab plate" },
- { imageSrc: "http://img.b2bpic.net/free-photo/arabic-kebab-sandwich-high-view-food_23-2148651083.jpg", imageAlt: "Durum chicken" },
- ]}
- buttons={[
- { text: "Ver Carta", href: "#products" },
- ]}
- avatarText="Más de 800 clientes felices"
- marqueeItems={[
- { type: "image", src: "http://img.b2bpic.net/free-photo/view-delicious-shawarma-dish_23-2151805527.jpg", alt: "Kebab brand" },
- { type: "image", src: "http://img.b2bpic.net/free-photo/doner-kebab-roasting-spti_53876-34017.jpg", alt: "Fresh meat brand" },
]}
+ buttons={[{ text: "Ver Carta", onClick: () => setIsMenuOpen(true) }]}
/>
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-