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