feat: Adds more navigation items to sidebar and removes top navigation bar.
All checks were successful
CI / release (push) Successful in 6m53s

This commit is contained in:
2025-04-16 09:16:24 -04:00
parent e9c1dfa2e5
commit c0a8e3ced8
8 changed files with 60 additions and 38 deletions

View File

@@ -30,7 +30,7 @@ func renderHome(body: String) -> Node {
div(class: "my-24 font-avenir leading-[1.25] font-thin text-center [&>h1>strong]:font-bold") {
Node.raw(body)
}
div {
div(class: "px-10") {
div(class: "bg-slate-800 p-10 rounded-lg border border-slate-400") {
h2 { "Quick Links" }
div(class: "grid lg:grid-cols-2 gap-6") {
@@ -92,12 +92,6 @@ func renderHome(body: String) -> Node {
}
}
}
script(src: "https://unpkg.com/lucide@latest")
Node.raw("""
<script>
lucide.createIcons();
</script>
""")
}
}