Files
Trilium/apps/website2/src/components/Header.tsx
2025-09-26 23:40:34 +03:00

26 lines
662 B
TypeScript

import "./Header.css";
import { useLocation } from 'preact-iso';
import DownloadButton from './DownloadButton';
export function Header() {
const { url } = useLocation();
return (
<header>
<div class="content-wrapper">
<a class="banner" href="/">
<img src="./src/assets/icon-color.svg" width="300" height="300" />&nbsp;<span>Trilium Notes</span>
</a>
<nav>
<a href="/404" class={url == '/404' && 'active'}>
404
</a>
</nav>
<DownloadButton />
</div>
</header>
);
}