Initial commit of LucentLink files

This commit is contained in:
Alex Selimov 2025-09-03 22:11:20 -04:00
commit 3c4c52fe2b
Signed by: aselimov
GPG key ID: 3DDB9C3E023F1F31
20 changed files with 569 additions and 0 deletions

View file

@ -0,0 +1,17 @@
<div class="space-y-4 mb-8">
{{ range .Params.links }}
<a href="{{ .href }}" class="block link-card p-4 flex items-center">
<div class="w-10 h-10 flex items-center justify-center mr-4">
<i class="{{ .icon }} icon text-xl"></i>
</div>
<div>
<h3 class="font-medium">{{ .title }}</h3>
<p class="text-sm opacity-70">{{ .description }}</p>
</div>
</a>
{{ end }}
</div>