Socialify

Folder ..

Viewing navbar.tsx
13 lines (11 loc) • 232.0 B

 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>
    );
  };