diff options
| author | Bobby <[email protected]> | 2023-05-09 20:37:58 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2023-05-09 20:37:58 -0400 |
| commit | b6335309030b483bae75f1b1cc5b602f477e8b23 (patch) | |
| tree | e8be4d3cc952d0e8de3f5e1bb86989c190e4f793 /app/layout.tsx | |
| parent | ca81030bd777ea04441f9b0cfc388e096f60a5a4 (diff) | |
| download | mafia-main.tar.xz mafia-main.zip | |
Diffstat (limited to 'app/layout.tsx')
| -rw-r--r-- | app/layout.tsx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/app/layout.tsx b/app/layout.tsx index 71b3fbf..05e709b 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,11 +1,12 @@ import './globals.css' import { Inter } from 'next/font/google' +import { Navbar } from './components/navbar' const inter = Inter({ subsets: ['latin'] }) export const metadata = { - title: 'Create Next App', - description: 'Generated by create next app', + title: 'Mafia - Online Multiplayer Game', + description: 'Online Multiplayer Mafia Game = No Signup Required!', } export default function RootLayout({ @@ -15,7 +16,10 @@ export default function RootLayout({ }) { return ( <html lang="en"> - <body className={inter.className}>{children}</body> + <body className={inter.className}> + <Navbar /> + <main>{children}</main> + </body> </html> ) } |
