import type { Metadata } from 'next'; import Script from 'next/script'; export const metadata: Metadata = { title: 'CREEM + DataFast Example', description: 'Payment attribution example', }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children} ); }