diff --git a/components/nav.jsx b/components/nav.jsx
deleted file mode 100644
index 20f3633..0000000
--- a/components/nav.jsx
+++ /dev/null
@@ -1,28 +0,0 @@
-import React from "react";
-
-const links = [
- { href: "https://youtube.com", label: "Youtube" },
- { href: "https://www.discogs.com/", label: "Discog" },
- { href: "https://findmusicbylyrics.com/", label: "Find music by Lyrics" },
- { href: "https://musicbrainz.org/", label: "MusicBrainz" }
-].map(link => {
- link.key = `nav-link-${link.href}-${link.label}`;
- return link;
-});
-
-const Nav = () => (
-
-);
-
-export default Nav;
diff --git a/pages/debug.jsx b/pages/debug.jsx
index bbba32d..2657098 100644
--- a/pages/debug.jsx
+++ b/pages/debug.jsx
@@ -6,7 +6,6 @@ import AppProvider from "../context/appProvider";
import Header from "../components/header";
import Calendar from "../components/calendar";
import ShowDoorDialog from "../components/showdoordialog";
-import Nav from "../components/nav";
const HomeDebug = () => {
return (
@@ -19,7 +18,6 @@ const HomeDebug = () => {
-
);
diff --git a/pages/index.jsx b/pages/index.jsx
index 3425ad4..07f3026 100644
--- a/pages/index.jsx
+++ b/pages/index.jsx
@@ -5,7 +5,6 @@ import AppProvider from "../context/appProvider";
import Header from "../components/header";
import Calendar from "../components/calendar";
import ShowDoorDialog from "../components/showdoordialog";
-import Nav from "../components/nav";
export default function Home() {
return (
@@ -18,7 +17,6 @@ export default function Home() {
-
);