From 628f23966541e05d6d6b4512cdb4983d96c44bf5 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 00:51:28 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 46 ++++++++-------------------------------------- 1 file changed, 8 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9b982df..dc0ca1b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,19 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +import type { Metadata } from 'next'; +import './globals.css'; export const metadata: Metadata = { - title: "Gás em Uberlândia | Entrega Rápida | AM Gás", description: "Peça seu botijão de gás com entrega rápida em Uberlândia. Atendimento educado, preço justo e pedido fácil pelo WhatsApp. Avaliação 5.0 no Google.", keywords: "gás em Uberlândia, entrega de gás, botijão de gás, gás Shopping Park, gás Uberlândia MG", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "AM Gás - Entrega Rápida em Uberlândia", description: "Gás com entrega em menos de 24h. Clique e peça agora pelo WhatsApp ou telefone.", type: "website", siteName: "AM Gás"}, + title: 'AM Gás | Entrega Rápida em Uberlândia', + description: 'Gás de cozinha com entrega rápida em Uberlândia. Atendimento rápido, preço justo e entrega confiável.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}