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
PUBLIC TESTING PAGE
; +} diff --git a/next-env.d.ts b/next-env.d.ts index 4f11a03d..fd36f949 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -1,5 +1,6 @@ /// /// +/// // NOTE: This file should not be edited // see https://nextjs.org/docs/basic-features/typescript for more information.