From 73e957caaf661900f1712c4217a73bb4fcfaa34b Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Fri, 30 May 2025 11:41:19 -0400 Subject: Base website --- src/app/components/Navbar.tsx | 46 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/app/components/Navbar.tsx (limited to 'src/app/components') diff --git a/src/app/components/Navbar.tsx b/src/app/components/Navbar.tsx new file mode 100644 index 0000000..ca9591e --- /dev/null +++ b/src/app/components/Navbar.tsx @@ -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