first initial commit

This commit is contained in:
2026-02-07 22:27:31 +08:00
commit 07786f8eb0
18 changed files with 6035 additions and 0 deletions

20
partials/navigation.hbs Normal file
View File

@@ -0,0 +1,20 @@
<ul class="flex flex-col md:flex-row md:items-center gap-1 md:gap-8">
{{#foreach navigation}}
<li class="group">
<a href="{{url}}"
class="flex items-center justify-between py-4 px-4 rounded-lg transition-all active:scale-[0.98]
{{#if current}}
text-blue-600 bg-blue-50/50
{{else}}
text-gray-700 hover:text-blue-600 active:bg-gray-100
{{/if}}">
<span class="text-base md:text-sm font-bold tracking-wide">{{label}}</span>
<svg class="w-5 h-5 md:hidden opacity-50" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
</svg>
</a>
</li>
{{/foreach}}
</ul>