diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1af72a1..c0d80b7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,4 +1,5 @@ import type { Metadata } from 'next' +import ThemeSwitcher from './components/themeswitcher' import './globals.css' export const metadata: Metadata = { @@ -7,13 +8,35 @@ export const metadata: Metadata = { } export default function RootLayout({ - children, + children, }: { - children: React.ReactNode + children: React.ReactNode }) { - return ( - - {children} - - ) + return ( + + +
+
+ Buzzword Bingov{process.env.npm_package_version} +
+
+ +
+
+
+ {children} +
+ + + ); } diff --git a/src/app/page.tsx b/src/app/page.tsx index 6413f75..9630b7c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,28 +3,6 @@ import ThemeSwitcher from './components/themeswitcher' export default function Home(){ return( - <> -
-
- Buzzword Bingov{process.env.npm_package_version} -
-
- -
-
-
- -
- + ); }