Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 836f6c8cd4 | |||
| 2d8cc5fa66 | |||
| 63e65e6c6b | |||
| 86088ecb61 | |||
| 3a2e02893d | |||
| ebfca805ca |
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Raleway } from "next/font/google";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -20,8 +21,15 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const raleway = Raleway({
|
||||
variable: "--font-raleway",
|
||||
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville",
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -33,7 +41,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${raleway.variable} antialiased`}>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -146,13 +146,13 @@ export default function LandingPage() {
|
||||
<FaqDouble
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Common Questions"
|
||||
description="We are here to assist with your dining plans."
|
||||
title="Preguntas Frecuentes"
|
||||
description="Estamos aquí para ayudarle con sus planes de cena."
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{ id: "1", title: "Do I need a reservation?", content: "Yes, we highly recommend booking in advance to ensure your table." },
|
||||
{ id: "2", title: "Are there vegetarian options?", content: "Our chef crafts dedicated vegetarian menus daily." },
|
||||
{ id: "3", title: "Is dress code required?", content: "We maintain an elegant casual dress code." },
|
||||
{ id: "1", title: "¿Necesito una reserva?", content: "Sí, recomendamos encarecidamente reservar con antelación para asegurar su mesa." },
|
||||
{ id: "2", title: "¿Hay opciones vegetarianas?", content: "Nuestro chef elabora menús vegetarianos dedicados a diario." },
|
||||
{ id: "3", title: "¿Se requiere código de vestimenta?", content: "Mantenemos un código de vestimenta casual elegante." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -161,18 +161,18 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Reservations"
|
||||
title="Secure Your Experience"
|
||||
description="Book your table directly through our team for a seamless dining experience."
|
||||
inputPlaceholder="Enter your email for booking"
|
||||
buttonText="Reserve Now"
|
||||
tag="Reservas"
|
||||
title="Asegure su Experiencia"
|
||||
description="Reserve su mesa directamente con nuestro equipo para una experiencia gastronómica sin complicaciones."
|
||||
inputPlaceholder="Ingrese su correo para reservar"
|
||||
buttonText="Reservar Ahora"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Presamar"
|
||||
copyrightText="© 2025 Presamar | Luxury Dining"
|
||||
copyrightText="© 2025 Presamar | Gastronomía de Lujo"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-raleway), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-raleway), sans-serif;
|
||||
font-family: var(--font-libre-baskerville), serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user