import Head from 'next/head' import { ThemeProvider } from '@aws-amplify/ui-react'; import { default as BaseLayout } from '../Layout'; import { theme } from './theme'; import type { PropsWithChildren } from 'react'; export type LayoutProps = PropsWithChildren<{ // @todo use types from Layout component meta: { title: string; description: string; }; }>; export default function Layout({ children, meta }: LayoutProps) { const creator = '@AWSAmplify'; const url = 'https://docs.amplify.aws/contribute'; return ( <>