import "./Header.css"; import { useLocation } from 'preact-iso'; import DownloadButton from './DownloadButton'; interface HeaderLink { url: string; text: string; external?: boolean; } const HEADER_LINKS: HeaderLink[] = [ { url: "https://docs.triliumnotes.org/", text: "Documentation", external: true }, { url: "/donate", text: "Support us" } ] export function Header() { const { url } = useLocation(); return (
); }