summaryrefslogtreecommitdiff
path: root/src/_components/nav.vto
diff options
context:
space:
mode:
authorseth <[email protected]>2024-02-12 07:51:32 -0500
committerseth <[email protected]>2024-02-12 08:51:36 -0500
commit19b01bff4c251722d4739f6dca208497877f7cbb (patch)
tree31918495004c9386760afbac6853c9e7668093c1 /src/_components/nav.vto
parentec2b378c8d7885290db2d526364eb59512e60d0e (diff)
actually kinda try this time
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>