aboutsummaryrefslogtreecommitdiff
path: root/app/src/components/Navbar.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/components/Navbar.tsx')
-rw-r--r--app/src/components/Navbar.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/src/components/Navbar.tsx b/app/src/components/Navbar.tsx
new file mode 100644
index 0000000..7ffb514
--- /dev/null
+++ b/app/src/components/Navbar.tsx
@@ -0,0 +1,11 @@
+import styles from '../styles/Navbar.module.css';
+
+function Navbar() {
+ return (
+ <nav className={styles.navbar}>
+ <span>LinkLogger</span>
+ </nav>
+ );
+}
+
+export default Navbar;