import type { Metadata } from 'next'; import './globals.css'; import { Providers } from './providers'; export const metadata: Metadata = { title: 'Tracker — Issue Management', description: 'Product-agnostic feature requests, bugs, and task management', }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }