import { siBluesky as BlueskyIcon, siGithub as GithubIcon, } from "npm:simple-icons"; import { useState } from "preact/hooks"; import { env } from "../lib/env.ts"; export function Footer() { const [blueskyHovered, setBlueskyHovered] = useState(false); const [githubHovered, setGithubHovered] = useState(false); return ( ); }