import { IconDownload } from "./icons/download"; import { IconGoose } from "./icons/goose"; import { ThemeToggle } from "./themeToggle"; import { Button } from "./ui/button"; import { NavLink, useLocation } from "react-router"; export const Header = () => { const location = useLocation(); const { hash, pathname, search } = location; return (
); };