import type { Metadata } from "next";
import "./globals.css";

export const metadata: Metadata = {
  title: "BexoGames — Deine Gaming Community",
  description: "BexoGames ist dein Zuhause für Gaming, Community, Events und offizielle Community-Streamer.",
};

export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
  return (
    <html lang="de">
      <body>{children}</body>
    </html>
  );
}
