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

export const metadata: Metadata = {
  title: "Temp",
  description: "Temp",
};

export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  // Allow downstream layouts (e.g., /[lang]) to take full control over
  // the <html> / <body> wrappers so they can set language-specific fonts.
  return <>{children}</>;
}
