From 9a5c0dd697fc122901b27d87a5eb91ce392d3369 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:16:49 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e9c3a30..7c29d13 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Public_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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); 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: { - 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"], - }, -}; + 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."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}