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 (
{children}
); }