From 398df37242961f1003f9ceec9c047781b2c9864c Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 20:17:22 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f884b5c..bf479ef 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { DM_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 dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +import "@/styles/globals.css"; export const metadata: Metadata = { - title: "Pirilanche Grill | Melhor Rodízio de Churrasco", description: "Descubra o melhor rodízio de churrasco. Premium atendimento, carnes selecionadas e reservas fáceis. Reserve sua mesa agora no Pirilanche Grill.", keywords: "churrascaria, rodízio, churrasco, São Paulo, restaurante, carnes premium, Brazilian steakhouse", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Pirilanche Grill | Experiência Premium em Churrascaria", description: "Sabor premium, ambiente aconchegante, atendimento impecável. Reserve sua mesa no melhor rodízio da cidade.", type: "website", siteName: "Pirilanche Grill", images: [ - { - url: "http://img.b2bpic.net/free-photo/fried-meat-with-onion-side-view_141793-2764.jpg", alt: "Carnes premium selecionadas Pirilanche Grill"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Pirilanche Grill | Rodízio de Churrasco Premium", description: "Melhor experiência em churrascaria com carnes de primeira qualidade e atendimento impecável.", images: ["http://img.b2bpic.net/free-photo/fried-meat-with-onion-side-view_141793-2764.jpg"], - }, -}; + title: "Pirilanche Grill - Rodízio de Churrasco Premium", description: "Descubra o melhor rodízio de churrasco da cidade. Carnes premium, ambiente aconchegante e atendimento impecável."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}