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,14 @@
<div class="rounded-lg p-6 mb-8 text-white mt-6"
style="background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px);">
<h2 class="text-xl font-bold mb-4">{{ .Params.messaging.title }}</h2>
<div class="space-y-3">
{{ range .Params.messaging.items }}
<div class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 {{ .color }} mt-0.5 mr-2">
<i class="{{ .icon }}"></i>
</div>
<p class="text-sm opacity-80">{{ .text }}</p>
</div>
{{ end }}
</div>
</div>