mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 02:52:27 +08:00
18 lines
597 B
Svelte
18 lines
597 B
Svelte
![]() |
<header class="header">
|
||
|
<div class="container mx-auto flex items-center">
|
||
|
<div class="header-logo">
|
||
|
Logo goes here.
|
||
|
</div>
|
||
|
|
||
|
<div class="group w-full">
|
||
|
<nav class="header-nav">
|
||
|
<ul class="flex items-center justify-end gap-4">
|
||
|
<li><a href="/">Home</a></li>
|
||
|
<li><a href="/about">About</a></li>
|
||
|
<li><a href="/services">Services</a></li>
|
||
|
<li><a href="/contact">Contact</a></li>
|
||
|
</ul>
|
||
|
</nav>
|
||
|
</div>
|
||
|
</div>
|
||
|
</header>
|