aboutsummaryrefslogtreecommitdiff
path: root/app/components
diff options
context:
space:
mode:
authorBobby <[email protected]>2023-05-09 20:37:58 -0400
committerBobby <[email protected]>2023-05-09 20:37:58 -0400
commitb6335309030b483bae75f1b1cc5b602f477e8b23 (patch)
treee8be4d3cc952d0e8de3f5e1bb86989c190e4f793 /app/components
parentca81030bd777ea04441f9b0cfc388e096f60a5a4 (diff)
downloadmafia-main.tar.xz
mafia-main.zip
Setup Basic RepositoryHEADmain
Diffstat (limited to 'app/components')
-rw-r--r--app/components/navbar.tsx14
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