import type { Metadata } from "next"; import { Inter } from "next/font/google"; import { AuthProvider } from "@/lib/auth"; import "@/app/globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Werkout", description: "AI-powered workout generator. Build personalized training plans based on your history and preferences.", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }