Update src/app/carta/page.tsx

This commit is contained in:
2026-04-06 10:12:54 +00:00
parent 484c0e7e0a
commit e3df3ce31e

View File

@@ -6,33 +6,28 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductDetailCard from '@/components/ecommerce/productDetail/ProductDetailCard';
export default function LandingPage() {
export default function CartaPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Inicio",
id: "/",
},
{
name: "Historia",
id: "/historia",
},
{
name: "Carta",
id: "/carta",
},
{
name: "Reservas",
id: "/reservas",
},
{ name: "Inicio", id: "/" },
{ name: "Historia", id: "/historia" },
{ name: "Carta", id: "/carta" },
{ name: "Reservas", id: "/reservas" }
]}
brandName="El Glop"
/>
@@ -45,47 +40,17 @@ export default function LandingPage() {
price="24€"
description="El clásico de la casa. Arroz cocinado a fuego lento con tinta de calamar y mariscos frescos."
images={[
{
src: "http://img.b2bpic.net/free-photo/side-view-fried-shrimp-with-sauce-black-pan_140725-10254.jpg",
alt: "Arroz negro",
},
]}
buttons={[
{
text: "Ver menú completo",
href: "/carta",
},
{ src: "http://img.b2bpic.net/free-photo/side-view-fried-shrimp-with-sauce-black-pan_140725-10254.jpg", alt: "Arroz negro" }
]}
buttons={[{ text: "Ver menú completo", href: "/carta" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Carta",
href: "/carta",
},
{
label: "Reservas",
href: "/reservas",
},
],
},
{
items: [
{
label: "Nuestra Historia",
href: "/historia",
},
{
label: "Grupos y Eventos",
href: "/experiencias",
},
],
},
{ items: [{ label: "Carta", href: "/carta" }, { label: "Reservas", href: "/reservas" }] },
{ items: [{ label: "Nuestra Historia", href: "/historia" }, { label: "Grupos y Eventos", href: "/experiencias" }] }
]}
logoText="El Glop"
/>
@@ -93,4 +58,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}