From fb54d88a74bbdc1cc728105475850e03645585f6 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 16:03:20 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 40 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42fa6ab..466238c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,54 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { DM_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Autoscuola [Nome] - Patente B, AM, A | Guida Sicura", + description: "La tua autoscuola di fiducia per conseguire la patente. Istruttori qualificati, auto moderne e alta percentuale di promossi. Prenota una lezione gratuita.", + keywords: "autoscuola, patente B, patente AM, patente A, lezioni guida, scuola guida, esami patenti, guida sicura", + metadataBase: new URL("https://autoscuola-nome.it"), + alternates: { + canonical: "https://autoscuola-nome.it", + }, + openGraph: { + title: "Autoscuola [Nome] - La Tua Autoscuola di Fiducia", + description: "Ti accompagniamo passo dopo passo verso la tua patente con istruttori qualificati e auto moderne.", + url: "https://autoscuola-nome.it", + siteName: "Autoscuola [Nome]", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Autoscuola [Nome] - La Tua Autoscuola di Fiducia", + description: "Ti accompagniamo passo dopo passo verso la tua patente.", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +57,9 @@ export default function RootLayout({ return ( - + {children}