blob: 7c74651bb99e952dfbc3133e160cfa94b45c8e4b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
import type { Metadata } from "next";
import "./globals.css";
import FooterSection from "@/components/FooterSection";
export const metadata: Metadata = {
title: "Leo's VCard Generator",
description: "Generiere kostenlos und clientseitig deine VCard als QRCode.",
openGraph: {
type: "website",
url: "https://vcard.leogtz.de",
title: "Leo's VCard Generator",
description: "Generiere kostenlos und clientseitig deine VCard als QRCode.",
siteName: "Leo's VCard Generator",
images: [{ url: "https://leogtz.de/logo.png" }],
},
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="de">
<body className={`antialiased dark flex flex-col min-h-screen`}>
<main className="grow">{children}</main>
<FooterSection />
</body>
</html>
);
}
|