From 35b27124391f529eb4d5cc3556d588371ca13105 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 02:08:58 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 49 ++++++++++++---------------------------------- 1 file changed, 13 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 08e61b7..97d03b6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,28 @@ import type { Metadata } from "next"; -import { Nunito } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Geist, Geist_Mono } from "next/font/google"; +import "@/styles/globals.css"; -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Barbearia Manuh | Cortes de Cabelo e Barba Premium", description: "Barbearia Manuh oferece serviços profissionais de corte, barba e rasagem clássica. Barbeiros experientes, ambiente acolhedor. Agende agora!", keywords: "barbearia, corte de cabelo, barba, barbeiro profissional, rasagem, grooming, salão de beleza", openGraph: { - title: "Barbearia Manuh | Cortes Premium", description: "Descubra os melhores serviços de barbearia com profissionais experientes", siteName: "Barbearia Manuh", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work_627829-7279.jpg", alt: "Barbearia Manuh - Salão profissional"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Barbearia Manuh | Cortes Premium", description: "Os melhores serviços de barbearia da região", images: ["http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work_627829-7279.jpg"], - }, -}; + title: "Barbearia Manuh", description: "Barbearia premium com profissionais experientes"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +