summaryrefslogtreecommitdiff
path: root/src/_components/nav.vto
diff options
context:
space:
mode:
Diffstat (limited to 'src/_components/nav.vto')
-rw-r--r--src/_components/nav.vto20
1 files changed, 8 insertions, 12 deletions
diff --git a/src/_components/nav.vto b/src/_components/nav.vto
index f1d935a..c159e14 100644
--- a/src/_components/nav.vto
+++ b/src/_components/nav.vto
@@ -1,13 +1,9 @@
-<nav>
- <div class="flex flex-column justify-center mx-auto p-7">
- <ul class="inline">
- {{ for item of links }}
- <li class="inline text-base p-2">
- <a class="rounded-xl bg-yellow p-2" href={{ item.url }}>
- {{ item.name }}
- </a>
- </li>
- {{ /for }}
- </ul>
- </div>
+<nav class="space-y-5 text-xl my-5">
+ <p>
+ {{ for item of links }}
+ <a href={{ item.url }}>{{ item.name }}</a>
+ {{ /for }}
+ </p>
+
+ <hr>
</nav>