diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5f52a87..46579d5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,28 @@ import type { Metadata } from "next"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "SAE - Riparazione Elettrodomestici Borgomanero", description: "Riparazione e vendita ricambi elettrodomestici a Borgomanero. Assistenza rapida, prezzi onesti, ricambi originali. Chiama 0322 835023", keywords: "riparazione elettrodomestici Borgomanero, ricambi lavatrice, assistenza frigorifero, centro riparazione NO", metadataBase: new URL("https://www.saeborgomanero.it"), - alternates: { - canonical: "https://www.saeborgomanero.it" - }, - openGraph: { - title: "SAE - Riparazione Elettrodomestici Borgomanero", description: "Riparazioni rapide e affidabili. Chiama ora per assistenza locale a Borgomanero", url: "https://www.saeborgomanero.it", siteName: "SAE Borgomanero", type: "website", images: [ - { - url: "https://www.saeborgomanero.it/og-image.jpg", alt: "SAE - Assistenza Elettrodomestici" - } - ] - }, - twitter: { - card: "summary_large_image", title: "SAE - Riparazione Elettrodomestici Borgomanero", description: "Chiama 0322 835023 per riparazioni rapide e affidabili", images: ["https://www.saeborgomanero.it/twitter-image.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "SAE Borgomanero - Riparazione Elettrodomestici", description: "Riparazioni rapide, ricambi originali e assistenza locale a Borgomanero dal 1995"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +