diff --git a/app/layout.tsx b/app/layout.tsx new file mode 100644 index 00000000..6d9feae3 --- /dev/null +++ b/app/layout.tsx @@ -0,0 +1,21 @@ +import { Metadata } from 'next'; + +// Nextjs automatically includes for each route two default meta tags, charset and viewport +// https://nextjs.org/docs/app/building-your-application/optimizing/metadata#default-fields +export const metadata: Metadata = { + title: 'Bloom', +}; + +export default function RootLayout({ + // Layouts must accept a children prop. + // This will be populated with nested layouts or pages + children, +}: { + children: React.ReactNode; +}) { + return ( + +
{children} + + ); +} diff --git a/app/public-route-test/page.tsx b/app/public-route-test/page.tsx new file mode 100644 index 00000000..c6f91528 --- /dev/null +++ b/app/public-route-test/page.tsx @@ -0,0 +1,3 @@ +export default async function Page() { + return