chore(website): port the rest of the layout

This commit is contained in:
Elian Doran
2025-09-26 23:24:28 +03:00
parent b3e1a79d40
commit 772d4ac5a1
5 changed files with 39 additions and 35 deletions

View File

@@ -5,14 +5,18 @@ export function Header() {
return (
<header>
<nav>
<a href="/" class={url == '/' && 'active'}>
Home
</a>
<a href="/404" class={url == '/404' && 'active'}>
404
</a>
</nav>
<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>
);
}