diff options
Diffstat (limited to 'app/components')
| -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 |
