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/components/navbar.tsx | |
| parent | ca81030bd777ea04441f9b0cfc388e096f60a5a4 (diff) | |
| download | mafia-main.tar.xz mafia-main.zip | |
Diffstat (limited to 'app/components/navbar.tsx')
| -rw-r--r-- | app/components/navbar.tsx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/components/navbar.tsx b/app/components/navbar.tsx new file mode 100644 index 0000000..6f5f2a1 --- /dev/null +++ b/app/components/navbar.tsx @@ -0,0 +1,14 @@ +'use client'; +import { Gruppo } from 'next/font/google' + +const gruppo = Gruppo({ + subsets: ['latin'], + weight: '400' +}) + +export const Navbar = () => { + + return ( + <h1 className={gruppo.className}>MAFIA</h1> + ); + };
\ No newline at end of file |
