aboutsummaryrefslogtreecommitdiff
path: root/app/components/navbar.tsx
blob: 6f5f2a11c51147d9482cb0a75b92b93ca3a7b56c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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>
    );
  };