diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a669766..520202d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; +import { Geist, Geist_Mono } 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 geistSans = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Gohan Temakeria | Temaki Fresco em Guarujá", description: "Temakeria no Guarujá com temakis frescos e sushi premium. Peça agora pelo WhatsApp ou ligue. Entrega rápida em Jardim Las Palmas.", keywords: "temakeria Guarujá, temaki Guarujá, sushi delivery Guarujá, restaurante japonês Guarujá, Gohan Temakeria", metadataBase: new URL("https://www.gohantemakeria.com.br"), - alternates: { - canonical: "https://www.gohantemakeria.com.br"}, - openGraph: { - title: "Gohan Temakeria | Temakis Frescos", description: "Descubra a melhor temakeria do Guarujá com ingredientes premium e preparo artesanal. Peça agora!", url: "https://www.gohantemakeria.com.br", siteName: "Gohan Temakeria", type: "website"}, - twitter: { - card: "summary_large_image", title: "Gohan Temakeria | Temakis Frescos", description: "Temakeria premium no Guarujá com entrega rápida e ingredientes de qualidade."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next app", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +