import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { AuthProvider } from "@/components/providers/AuthProvider"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "WFH Daily Report", description: "Sleek and modern work from home reporting tool", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }