|
|
|
|
@@ -1,57 +1,19 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { Source_Sans_3 } 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 inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const sourceSans3 = Source_Sans_3({
|
|
|
|
|
variable: "--font-source-sans-3", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Scuola Arcobaleno Roma | Educazione Waldorf Infanzia Primaria", description: "Scuola Arcobaleno a Roma offre educazione Waldorf per Infanzia, Primaria e Media. Un percorso olistico che valorizza arte, immaginazione e ritmo naturale dello sviluppo del bambino.", keywords: "Scuola Arcobaleno Roma, Educazione Waldorf, Scuola infanzia paritaria, Scuola primaria, Media parentale, Insegnamento alternativo, Pedagogia steineriana", metadataBase: new URL("https://scuolaarcobaleno.it"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://scuolaarcobaleno.it"},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Scuola Arcobaleno Roma | Educazione Waldorf per Bambini", description: "Scopri il metodo educativo olistico di Scuola Arcobaleno: arte, immaginazione e pensiero critico per bambini da 0 a 14 anni.", url: "https://scuolaarcobaleno.it", siteName: "Scuola Arcobaleno", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://static.wixstatic.com/media/c8b929_86eceeb20bfc406a81af3e2caefdd414~mv2.png/v1/fill/w_401%2Ch_490%2Cal_c%2Cq_85%2Cusm_0.66_1.00_0.01%2Cenc_avif%2Cquality_auto/didattica%20foto_edited_edited_edited.png", alt: "Classe Scuola Arcobaleno"},
|
|
|
|
|
],
|
|
|
|
|
type: "website"},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Scuola Arcobaleno Roma | Educazione Waldorf", description: "Un percorso educativo che valorizza immaginazione, arte e ritmo naturale.", images: ["https://static.wixstatic.com/media/c8b929_86eceeb20bfc406a81af3e2caefdd414~mv2.png/v1/fill/w_401%2Ch_490%2Cal_c%2Cq_85%2Cusm_0.66_1.00_0.01%2Cenc_avif%2Cquality_auto/didattica%20foto_edited_edited_edited.png"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Scuola Arcobaleno", description: "Educazione Waldorf a Roma - Un percorso educativo che valorizza immaginazione, arte e ritmo."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="it">
|
|
|
|
|
<body>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1419,7 +1381,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|