import type { Metadata } from 'next';
import { Geist, Geist_Mono } from 'next/font/google';
import './globals.css';

const geistSans = Geist({
  variable: '--font-geist-sans',
  subsets: ['latin'],
});

const geistMono = Geist_Mono({
  variable: '--font-geist-mono',
  subsets: ['latin'],
});

export const metadata: Metadata = {
  metadataBase: new URL('https://nagelstudio-berlin-charlottenburg.ksdream96.chatgpt.site'),
  title: 'Nagelstudio in Berlin Charlottenburg | Kantstraße 15 A',
  description: 'Maniküre, Pediküre und Nagelverlängerung in Berlin-Charlottenburg. Termin telefonisch anfragen.',
  openGraph: {
    title: 'Nagelstudio Berlin Charlottenburg',
    description: 'Schöne Nägel. Dein Moment. Maniküre, Pediküre und Nagelverlängerung in der Kantstraße.',
    locale: 'de_DE',
    type: 'website',
    images: [{ url: '/og.png', width: 1731, height: 909, alt: 'Nagelstudio Berlin Charlottenburg' }],
  },
  twitter: {
    card: 'summary_large_image',
    title: 'Nagelstudio Berlin Charlottenburg',
    description: 'Schöne Nägel. Dein Moment.',
    images: ['/og.png'],
  },
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="de">
      <body
        className={`${geistSans.variable} ${geistMono.variable} antialiased`}
      >
        {children}
      </body>
    </html>
  );
}
