Update src/app/reservas/page.tsx
This commit is contained in:
@@ -7,33 +7,28 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
|
||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ReservasPage() {
|
||||
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,16 +40,8 @@ export default function LandingPage() {
|
||||
sideTitle="Preguntas frecuentes"
|
||||
sideDescription="Resuelve tus dudas sobre reservas y eventos."
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "¿Aceptáis grupos grandes?",
|
||||
content: "Sí, disponemos de espacios adaptados.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "¿Necesito reservar?",
|
||||
content: "Recomendamos reservar con antelación.",
|
||||
},
|
||||
{ id: "f1", title: "¿Aceptáis grupos grandes?", content: "Sí, disponemos de espacios adaptados." },
|
||||
{ id: "f2", title: "¿Necesito reservar?", content: "Recomendamos reservar con antelación." }
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
@@ -68,14 +55,7 @@ export default function LandingPage() {
|
||||
title="Reserva tu mesa"
|
||||
description="Disfruta de la mejor cocina catalana con nosotros."
|
||||
metrics={[
|
||||
{
|
||||
id: "m4",
|
||||
value: "Online",
|
||||
title: "Reserva Rápida",
|
||||
items: [
|
||||
"Disponibilidad 24h",
|
||||
],
|
||||
},
|
||||
{ id: "m4", value: "Online", title: "Reserva Rápida", items: ["Disponibilidad 24h"] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -83,30 +63,8 @@ export default function LandingPage() {
|
||||
<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"
|
||||
/>
|
||||
@@ -114,4 +72,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user