Update src/app/layout.tsx

This commit is contained in:
2026-03-10 16:05:02 +00:00
parent d84cc404d2
commit 9603f7fed1

View File

@@ -1,24 +1,63 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } 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 { Archivo } 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 archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "AmtAssist - Deutsche Bürokratie einfach erklärt",
description: "AmtAssist ist ein KI-Assistent der deutsche Behördenbriefe erklärt, Fristen erkennt und Antworten generiert. DSGWR-konform, mehrsprachig, kostenlos testen.",
keywords: "Bürokratie, Behördenbriefe, KI-Assistent, Deutschland, DSGVO, Dokumente, Fristen",
metadataBase: new URL("https://amtassist.de"),
alternates: {
canonical: "https://amtassist.de",
},
openGraph: {
title: "AmtAssist - Deutsche Bürokratie verständlich gemacht",
description: "Verstehe Behördenbriefe in Sekunden. AmtAssist erklärt komplexe Texte, erkennt Fristen und generiert Antworten.",
url: "https://amtassist.de",
siteName: "AmtAssist",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al4jBFhkAi56lRd60TBHCQ457a/a-modern-clean-illustration-showing-the--1773158627338-32046694.png",
alt: "AmtAssist - Der KI-Assistent für Behördenbriefe",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "AmtAssist - Deutsche Bürokratie verstehen",
description: "Kostenlos Behördenbriefe verstehen, Fristen erkennen und Antworten generieren",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al4jBFhkAi56lRd60TBHCQ457a/a-modern-clean-illustration-showing-the--1773158627338-32046694.png",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +66,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}