|
|
|
|
@@ -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 (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${raleway.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="it">
|
|
|
|
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1410,7 +1390,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|