From 337d7fd267bdac550625d28338a47bfa9cc34c96 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 12:22:16 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2037a44..d81cca4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -39,6 +39,8 @@ export default function LandingPage() { name: "Productos", id: "#products"}, { name: "Testimonios", id: "#testimonials"}, + { + name: "Preguntas Frecuentes", id: "#faq"}, { name: "Contacto", id: "#contact"}, ]} @@ -172,7 +174,7 @@ export default function LandingPage() { { id: "t4", name: "Carlos Sánchez", role: "Aficionado a la Gastronomía", testimonial: "Después de probar el lomo ibérico de Razapork, no puedo volver a otro. Es la perfección hecha embutido.", imageSrc: "http://img.b2bpic.net/free-photo/amused-speechless-surprised-astonished-redhead-girl-hear-exciting-positive-news-smiling-gladly-wide_1258-254098.jpg", imageAlt: "Carlos Sánchez, Aficionado a la Gastronomía"}, { - id: "t5", name: "Sofía Martín", role: "Sumiller", testimonial: "La grasa infiltrada, el aroma y el punto de sal. Cada detalle en los productos Razapork es una obra de arte ibérica.", imageSrc: "http://img.b2bpic.net/free-photo/guys-breakfast_1098-14577.jpg", imageAlt: "Sofía Martín, Sumiller"}, + id: "t5", name: "Sofía Martín", role: "Sumiller", testimonial: "La grasa infiltrada, el aroma y el punto de sal. Cada detalle en los productos Razapork es una obra de arte ibérica.", imageSrc: "http://img.b2bpic.net/free-photo/guys-breakfast_1098-14577.jpg", alt: "Sofía Martín, Sumiller"}, ]} title="Lo que dicen nuestros Clientes" description="La satisfacción de quienes prueban nuestros productos es nuestro mayor orgullo y motivación." @@ -227,11 +229,11 @@ export default function LandingPage() { { label: "Jamones", href: "#products"}, { - label: "Paletas", href: "##products"}, + label: "Paletas", href: "#products"}, { - label: "Embutidos", href: "##products"}, + label: "Embutidos", href: "#products"}, { - label: "Estuches", href: "##products"}, + label: "Estuches", href: "#products"}, ], }, { -- 2.49.1 From e5f847c07b006b50defa1f573101457cd65662f7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 12:22:17 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 3f290fd..106089e 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #ffffff; - --card: #f9f9f9; - --foreground: #120a00e6; - --primary-cta: #ff8c42; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #ffffff; + --primary-cta: #e34400; --primary-cta-text: #ffffff; - --secondary-cta: #f9f9f9; + --secondary-cta: #010101; --secondary-cta-text: #120a00e6; - --accent: #e2e2e2; - --background-accent: #c4c4c4; + --accent: #ff7b05; + --background-accent: #106efb; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1