From 3abea2fe412755858289ce5355c21d1db5f57764 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 11:58:17 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 283 +++++++++-------------------------------------- 1 file changed, 50 insertions(+), 233 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7a88acf..fa5b7fb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; -import { Clock, Flame, Users } from "lucide-react"; +import { Clock, Flame, Users, Wine } from "lucide-react"; export default function LandingPage() { return ( @@ -30,95 +30,43 @@ export default function LandingPage() {
@@ -128,10 +76,7 @@ export default function LandingPage() { useInvertedBackground={false} title="Nuestro Concepto" description={[ - "Parking Pizza nace del deseo de transformar espacios industriales en templos de la pizza napolitana.", - "Cada detalle cuenta una historia: desde la selección de harinas orgánicas hasta el horno de brasa artesanal que preside nuestra mesa comunitaria.", - "Un espacio donde el diseño barcelonés y la técnica italiana convergen bajo luces bajas y paredes de hormigón.", - ]} + "Parking Pizza nace del deseo de transformar espacios industriales en templos de la pizza napolitana.", "Cada detalle cuenta una historia: desde la selección de harinas orgánicas hasta el horno de brasa artesanal que preside nuestra mesa comunitaria.", "Un espacio donde el diseño barcelonés y la técnica italiana convergen bajo luces bajas y paredes de hormigón."]} /> @@ -142,60 +87,12 @@ export default function LandingPage() { gridVariant="bento-grid" useInvertedBackground={false} products={[ - { - id: "p1", - brand: "Especial", - name: "Margherita D.O.P.", - price: "14,50€", - rating: 5, - reviewCount: "240", - imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-pizza-with-sauce_23-2148601648.jpg", - }, - { - id: "p2", - brand: "Especial", - name: "Trufada con Boletus", - price: "18,90€", - rating: 5, - reviewCount: "185", - imageSrc: "http://img.b2bpic.net/free-photo/pasta-with-chicken-tomatoes-greens-grated-cheese-served-with-juice_140725-7992.jpg", - }, - { - id: "p3", - brand: "Entrante", - name: "Burrata Artesana", - price: "12,00€", - rating: 4, - reviewCount: "120", - imageSrc: "http://img.b2bpic.net/free-photo/sauces-near-pizza_23-2147772094.jpg", - }, - { - id: "p4", - brand: "Especial", - name: "Prosciutto e Funghi", - price: "16,00€", - rating: 5, - reviewCount: "95", - imageSrc: "http://img.b2bpic.net/free-photo/assorted-meat-pizza-with-jamon-olives_501050-772.jpg", - }, - { - id: "p5", - brand: "Veggie", - name: "Verduras de Temporada", - price: "15,50€", - rating: 4, - reviewCount: "70", - imageSrc: "http://img.b2bpic.net/free-photo/pizza-is-wooden-tray-topped-with-red-onions-black-grapes-tomatoes-lettuce_1150-24487.jpg", - }, - { - id: "p6", - brand: "Postre", - name: "Pizza de Nutella", - price: "9,50€", - rating: 5, - reviewCount: "310", - imageSrc: "http://img.b2bpic.net/free-photo/halloween-pizza-with-creepy-ghosts-top_23-2148276233.jpg", - }, + { id: "p1", brand: "Especial", name: "Margherita D.O.P.", price: "14,50€", rating: 5, reviewCount: "240", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-pizza-with-sauce_23-2148601648.jpg" }, + { id: "p2", brand: "Especial", name: "Trufada con Boletus", price: "18,90€", rating: 5, reviewCount: "185", imageSrc: "http://img.b2bpic.net/free-photo/pasta-with-chicken-tomatoes-greens-grated-cheese-served-with-juice_140725-7992.jpg" }, + { id: "p3", brand: "Entrante", name: "Burrata Artesana", price: "12,00€", rating: 4, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/sauces-near-pizza_23-2147772094.jpg" }, + { id: "p4", brand: "Especial", name: "Prosciutto e Funghi", price: "16,00€", rating: 5, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/assorted-meat-pizza-with-jamon-olives_501050-772.jpg" }, + { id: "p5", brand: "Veggie", name: "Verduras de Temporada", price: "15,50€", rating: 4, reviewCount: "70", imageSrc: "http://img.b2bpic.net/free-photo/pizza-is-wooden-tray-topped-with-red-onions-black-grapes-tomatoes-lettuce_1150-24487.jpg" }, + { id: "p6", brand: "Postre", name: "Pizza de Nutella", price: "9,50€", rating: 5, reviewCount: "310", imageSrc: "http://img.b2bpic.net/free-photo/halloween-pizza-with-ghosts_23-2148276233.jpg" }, ]} title="Nuestra Carta" description="Pizzas de fermentación lenta, ingredientes de origen selecto y el toque maestro de nuestra brasa." @@ -204,48 +101,29 @@ export default function LandingPage() {