import type { Metadata } from "next"; import type { ReactNode } from "react"; import { GeistSans } from "geist/font/sans"; import { GeistMono } from "geist/font/mono"; import "./globals.css"; export const metadata: Metadata = { title: "Breakpilot", description: "Breakpilot Platform — customer portal", }; export default function RootLayout({ children }: { children: ReactNode }) { return (
{/* Restore the user's last theme before paint to avoid a flash. */} {children} ); }