import './globals.css'; import type { Metadata } from 'next'; export const metadata: Metadata = { title: 'Link Management & Analytics', description: 'Track and analyze shortened links', }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }