Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 42603b801d | |||
| 9163e12f8f | |||
| 752c9a5be5 | |||
| 67bcb9b9ee | |||
| d4bde871b6 | |||
| 700ef0ab9b |
@@ -1,51 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } 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 openSans = Open_Sans({
|
||||
variable: "--font-open-sans", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Único Mexicanum | Auténtica Comida Mexicana en Toluca", description: "Restaurante mexicano en Toluca con platillos auténticos, enchiladas, chilaquiles y antojitos. Servicio en el lugar, drive-thru y entrega a domicilio.", keywords: "restaurante mexicano Toluca, comida mexicana auténtica, enchiladas, chilaquiles, antojitos, delivery Toluca", metadataBase: new URL("https://unico-mexicanum.com"),
|
||||
openGraph: {
|
||||
title: "Único Mexicanum | Auténtica Comida Mexicana en Toluca", description: "Descubre los mejores sabores de México en Único Mexicanum. Recetas tradicionales, ingredientes frescos y servicio excepcional.", siteName: "Único Mexicanum", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/decorative-wood-background-wall_1417-1944.jpg", alt: "Restaurante Único Mexicanum"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Único Mexicanum | Auténtica Comida Mexicana en Toluca", description: "Descubre los mejores sabores de México en Único Mexicanum", images: ["http://img.b2bpic.net/free-photo/decorative-wood-background-wall_1417-1944.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Único Mexicanum | Restaurante Mexicano en Toluca", description: "Celebramos los sabores auténticos de México en un ambiente agradable, familiar y lleno de tradición."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="es">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -49,7 +49,7 @@ export default function LandingPage() {
|
||||
imageSrc="http://img.b2bpic.net/free-photo/decorative-wood-background-wall_1417-1944.jpg"
|
||||
imageAlt="Restaurante Único Mexicanum ambiente tradicional"
|
||||
buttons={[
|
||||
{ text: "Ver Menú", href: "#features" },
|
||||
{ text: "Ver Menú y Hacer Pedido", href: "#features" },
|
||||
{ text: "Hacer Pedido", href: "#contact" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -172,7 +172,7 @@ export default function LandingPage() {
|
||||
description="Haz tu pedido o reserva tu mesa ahora. Estamos ubicados en Leonardo Bravo 300, Colonia Morelos, Toluca de Lerdo, Estado de México. Llámanos al 722 202 3863 o envíanos un mensaje desde aquí."
|
||||
buttons={[
|
||||
{ text: "Llamar Ahora", href: "tel:7222023863" },
|
||||
{ text: "Enviar Mensaje", href: "#" }
|
||||
{ text: "Ordenar por WhatsApp", href: "https://wa.me/527222023863" }
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
@@ -187,4 +187,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user