Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 054c3e7954 | |||
| cb652b3022 | |||
| 9a5c0dd697 | |||
| 46e3294998 | |||
| babb52643d | |||
| 185e6cf214 | |||
| fddd9ec59a |
@@ -1,54 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Public_Sans } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const publicSans = Public_Sans({
|
|
||||||
variable: "--font-public-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "La Casa Grill & Pub | Parrilla en Hurlingham", description: "Parrilla, buena música y el mejor ambiente en Hurlingham. Disfrutá de parrilladas abundantes, platos caseros y un ambiente familiar. Reservá tu mesa ahora.", keywords: "parrilla, grill, restaurante, Hurlingham, carnes, asado, buena comida", robots: {
|
title: "La Casa GRILL & PUB", description: "Parrilla, buena música y el mejor ambiente en Hurlingham. Disfrutá de parrilladas abundantes, platos caseros y un ambiente familiar."};
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "La Casa Grill & Pub | Parrilla en Hurlingham", description: "Reservá tu mesa en La Casa Grill & Pub. Parrilladas abundantes, buena música y ambiente familiar.", type: "website", siteName: "La Casa Grill & Pub", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/atmospheric-wooden-table-with-dramatic-smoke-light_84443-73793.jpg", alt: "La Casa Grill & Pub - Parrilla auténtica"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "La Casa Grill & Pub | Parrilla en Hurlingham", description: "Reservá tu mesa. Parrilladas, buena música y ambiente cálido.", images: ["http://img.b2bpic.net/free-photo/atmospheric-wooden-table-with-dramatic-smoke-light_84443-73793.jpg"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="es">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -47,6 +47,7 @@ export default function LandingPage() {
|
|||||||
description="Parrilla, buena música y el mejor ambiente en Hurlingham. Disfrutá de parrilladas abundantes, platos caseros y un ambiente familiar perfecto para salir con amigos, en pareja o celebrar un cumpleaños."
|
description="Parrilla, buena música y el mejor ambiente en Hurlingham. Disfrutá de parrilladas abundantes, platos caseros y un ambiente familiar perfecto para salir con amigos, en pareja o celebrar un cumpleaños."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Reservar Ahora", href: "contact" },
|
{ text: "Reservar Ahora", href: "contact" },
|
||||||
|
{ text: "Llamar Ahora", href: "tel:+541171410007" },
|
||||||
{ text: "Ver Menú", href: "menu" }
|
{ text: "Ver Menú", href: "menu" }
|
||||||
]}
|
]}
|
||||||
slides={[
|
slides={[
|
||||||
|
|||||||
Reference in New Issue
Block a user