import '../globals.css'; import type { Metadata } from 'next'; import { Inter } from 'next/font/google'; import AppLayoutClient from './AppLayoutClient'; const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { title: 'ShortURL Analytics', description: 'Analytics dashboard for ShortURL service', }; export default function AppLayout({ children, }: { children: React.ReactNode; }) { return (
{children}
); }