import { HeaderButton } from "./HeaderButton"; import { useTranslation } from "react-i18next"; import { Link } from "preact-router"; import { motion } from "framer-motion"; // Header icons import { HiOutlineCube } from "react-icons/hi"; import { RxMixerVertical, RxHamburgerMenu } from "react-icons/rx"; import { RiLinksFill } from "react-icons/ri"; import { useState } from "preact/hooks"; export function Header() { const { t } = useTranslation(); const [isActive, setIsActive] = useState(false); return (
); }