import './globals.css'; import '@radix-ui/themes/styles.css'; import type { Metadata } from 'next'; import { AuthProvider } from '@/lib/auth'; import { Theme } from '@radix-ui/themes'; import Header from '@/app/components/layout/Header'; export const metadata: Metadata = { title: 'ShortURL Analytics', description: 'Track and analyze shortened links', }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children} ); }