Files
Trilium/apps/website3/src/components/Header.tsx

23 lines
605 B
TypeScript
Raw Normal View History

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