mirror of
https://github.com/kogakure/website-astro-stefanimhoff.de.git
synced 2026-02-03 20:15:27 +00:00
37 lines
938 B
Plaintext
37 lines
938 B
Plaintext
---
|
|
import data from '../data/subnavigation.json';
|
|
|
|
import { Link } from '.';
|
|
---
|
|
|
|
<nav class="navigation glow flex gap-12" aria-label="Subnavigation" role="navigation">
|
|
<ul>
|
|
{
|
|
data.main.map(({ title, url }) => (
|
|
<li>
|
|
<Link
|
|
href={url}
|
|
class="font-light decoration-4 underline-offset-auto hover:underline hover:decoration-shibui-900/20 focus:underline focus:decoration-shibui-900/20 dark:hover:decoration-shibui-100/20 dark:focus:decoration-shibui-100/20"
|
|
>
|
|
{title}
|
|
</Link>
|
|
</li>
|
|
))
|
|
}
|
|
</ul>
|
|
<ul class="mie-10">
|
|
{
|
|
data.misc.map(({ title, url }) => (
|
|
<li>
|
|
<Link
|
|
href={url}
|
|
class="font-light decoration-4 underline-offset-auto hover:underline hover:decoration-shibui-900/20 focus:underline focus:decoration-shibui-900/20 dark:hover:decoration-shibui-100/20 dark:focus:decoration-shibui-100/20"
|
|
>
|
|
{title}
|
|
</Link>
|
|
</li>
|
|
))
|
|
}
|
|
</ul>
|
|
</nav>
|