import type { Metadata } from 'next'; export const metadata: Metadata = { title: 'Amba Email Templates', description: 'Preview and test email templates for Amba app', }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }