Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a8d518aa26 | |||
| 4cc4358acc | |||
| 30f0961102 | |||
| 71fa8609e0 | |||
| a3b3acf04f | |||
| 495424317b | |||
| b76cbc80eb | |||
| 0be970c1df |
@@ -1,46 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Doña Flavia | Tlayudas Legendarias de Oaxaca", description: "Vive la grandeza de Oaxaca. Tlayudas gigantes, horchata de autor, y atmósfera auténtica con murales históricos y música en vivo.", keywords: "tlayudas oaxaca, comida oaxaqueña, restaurante oaxaca, quesillo, horchata tuna", metadataBase: new URL("https://donaflavia.mx"),
|
||||
openGraph: {
|
||||
title: "Doña Flavia | Tlayudas Legendarias", description: "Experiencia gastronómica auténtica de Oaxaca. Tlayudas de 40cm, bebidas artesanales y tradición viva.", siteName: "Doña Flavia", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/side-view-cook-preparing-pizza_23-2150283010.jpg", alt: "charcoal grill tlayuda cooking smoke"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Doña Flavia | Tlayudas Legendarias de Oaxaca", description: "La grandeza de Oaxaca en un solo bocado. Descubre nuestras tlayudas gigantes y bebidas artesanales.", images: ["http://img.b2bpic.net/free-photo/side-view-cook-preparing-pizza_23-2150283010.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Doña Flavia - Tlayudas de Oaxaca", description: "Experience the legendary oversized tlayudas of Doña Flavia. Authentic Oaxacan cuisine with artisanal tradition."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="es">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1408,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -53,12 +53,13 @@ export default function LandingPage() {
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{ text: "RESERVAR MESA", href: "#contact" },
|
||||
{ text: "RESERVAR AHORA", href: "#contact" },
|
||||
{ text: "PEDIDO A DOMICILIO", href: "#" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-cook-preparing-pizza_23-2150283010.jpg"
|
||||
imageAlt="Legendary tlayuda being prepared over charcoal fire"
|
||||
mediaAnimation="blur-reveal"
|
||||
titleClassName="text-orange-600"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -209,4 +210,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #1f2027;
|
||||
--card: #ffffff;
|
||||
--foreground: #1f2027;
|
||||
--primary-cta: #1f2027;
|
||||
--primary-cta-text: #e3deea;
|
||||
--secondary-cta: #ffffff;
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #120a00e6;
|
||||
--primary-cta: #E34400;
|
||||
--primary-cta-text: #ebe8df;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #1f2027;
|
||||
--accent: #627dc6;
|
||||
--background-accent: #627dc6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #E34400;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user