diff --git a/app/page.tsx b/app/page.tsx deleted file mode 100644 index 290d295..0000000 --- a/app/page.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import Image from "next/image"; - -export default function Home() { - return ( -
- ); -} diff --git a/src/app/components/Navbar.tsx b/src/app/components/Navbar.tsx new file mode 100644 index 0000000..7d3596b --- /dev/null +++ b/src/app/components/Navbar.tsx @@ -0,0 +1,118 @@ +'use client'; + +import Link from "next/link"; +import { useState } from "react"; +import { Menu, X, Music } from "lucide-react"; + +export default function Navbar() { + const [open, setOpen] = useState(false); + const user = false; // Placeholder for user authentication state + + const navItems = [ + { href: "/", label: "Home" }, + { href: "/library", label: "Library" }, + ]; + + if (!user) { + return ( +FirstFM uses your Last.fm account to recommend songs and personalize your experience.
++ Unlock your music map by signing in with your Last.fm account. +
+This couldn't have been possible without the FirstFM team check them out here! v1.0.0
+