From 940ebb6c71bd39e87f5b565587406beabefddaad Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sat, 7 Oct 2023 00:01:57 -0400 Subject: Initial website --- app/components/Navbar.js | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 app/components/Navbar.js (limited to 'app/components/Navbar.js') diff --git a/app/components/Navbar.js b/app/components/Navbar.js new file mode 100644 index 0000000..52172fb --- /dev/null +++ b/app/components/Navbar.js @@ -0,0 +1,46 @@ +"use client"; +import Image from "next/image"; +import Link from "next/link"; +import { useState } from "react"; + +const Navbar = () => { + const [navbar, setNavbar] = useState(false); + return ( + + ) +} + +export default Navbar; -- cgit v1.2.3