Merge version_1 into main #1
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +71,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -76,7 +76,7 @@ export default function HomePage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-senior-travelers-car_23-2149049195.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-senior-travelers-car_23-2149049195.jpg?_wi=1"
|
||||
imageAlt="Istruttore e studente in auto da guida"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -112,28 +112,28 @@ export default function HomePage() {
|
||||
id: "patente-b",
|
||||
title: "Patente B",
|
||||
tags: ["Auto", "Teoria", "Pratica"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-holding-camera_23-2148962709.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-holding-camera_23-2148962709.jpg?_wi=1",
|
||||
imageAlt: "patente auto documento guidare automobile",
|
||||
},
|
||||
{
|
||||
id: "patente-am",
|
||||
title: "Patente AM",
|
||||
tags: ["Motorino", "Principianti", "Sicuro"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-calling-help-repair-motorbike_23-2148585460.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-calling-help-repair-motorbike_23-2148585460.jpg?_wi=1",
|
||||
imageAlt: "motorino scooter piaggio vespa 50cc",
|
||||
},
|
||||
{
|
||||
id: "patente-a",
|
||||
title: "Patente A",
|
||||
tags: ["Moto", "Avanzato", "Adrenalina"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-taking-driver-s-license-exam_23-2149891424.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-taking-driver-s-license-exam_23-2149891424.jpg?_wi=1",
|
||||
imageAlt: "moto motorcycle strada lezione pratica",
|
||||
},
|
||||
{
|
||||
id: "rinnovo-patente",
|
||||
title: "Rinnovo Patente",
|
||||
tags: ["Rapido", "Efficiente", "Semplice"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photo-through-glass-paperwork-back-seat-car-senior-businessman-with-documents_146671-14511.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photo-through-glass-paperwork-back-seat-car-senior-businessman-with-documents_146671-14511.jpg?_wi=1",
|
||||
imageAlt: "patente rinnovo ufficio pratiche auto",
|
||||
},
|
||||
{
|
||||
|
||||
@@ -95,7 +95,7 @@ export default function PrenotazionePage() {
|
||||
{ text: "Chiama Ora", href: "tel:+391234567890" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-senior-travelers-car_23-2149049195.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-senior-travelers-car_23-2149049195.jpg?_wi=3"
|
||||
imageAlt="Istruttore e studente in auto da guida"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -128,25 +128,25 @@ export default function PrenotazionePage() {
|
||||
id: "lezione-pratica",
|
||||
title: "Lezione Pratica",
|
||||
tags: ["Strada", "Guida Reale", "Esperienza"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-holding-camera_23-2148962709.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-holding-camera_23-2148962709.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "lezione-teorica",
|
||||
title: "Lezione Teorica",
|
||||
tags: ["Aula", "Preparazione", "Esame"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-calling-help-repair-motorbike_23-2148585460.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-calling-help-repair-motorbike_23-2148585460.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "lezione-simulazione",
|
||||
title: "Simulazione Esame",
|
||||
tags: ["Pratica", "Test", "Confidenza"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-taking-driver-s-license-exam_23-2149891424.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-taking-driver-s-license-exam_23-2149891424.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "lezione-personalizzata",
|
||||
title: "Lezione Personalizzata",
|
||||
tags: ["Custom", "Flessibile", "Mirato"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photo-through-glass-paperwork-back-seat-car-senior-businessman-with-documents_146671-14511.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photo-through-glass-paperwork-back-seat-car-senior-businessman-with-documents_146671-14511.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
|
||||
@@ -72,7 +72,7 @@ export default function ServicesPage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-senior-travelers-car_23-2149049195.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-senior-travelers-car_23-2149049195.jpg?_wi=2"
|
||||
imageAlt="Istruttore e studente in auto da guida"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -91,21 +91,21 @@ export default function ServicesPage() {
|
||||
id: "patente-b-full",
|
||||
title: "Patente B - Corso Completo",
|
||||
tags: ["Auto", "Teoria", "Pratica", "Esame Incluso"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-holding-camera_23-2148962709.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-holding-camera_23-2148962709.jpg?_wi=2",
|
||||
imageAlt: "patente auto documento guidare automobile",
|
||||
},
|
||||
{
|
||||
id: "patente-am-full",
|
||||
title: "Patente AM - Motorino e Scooter",
|
||||
tags: ["Motorino", "Principianti", "Sicuro", "16+ Anni"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-calling-help-repair-motorbike_23-2148585460.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-calling-help-repair-motorbike_23-2148585460.jpg?_wi=2",
|
||||
imageAlt: "motorino scooter piaggio vespa 50cc",
|
||||
},
|
||||
{
|
||||
id: "patente-a-full",
|
||||
title: "Patente A - Moto e Motociclette",
|
||||
tags: ["Moto", "Avanzato", "Adrenalina", "18+ Anni"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-taking-driver-s-license-exam_23-2149891424.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-taking-driver-s-license-exam_23-2149891424.jpg?_wi=2",
|
||||
imageAlt: "moto motorcycle strada lezione pratica",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user