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,13 @@
{{ with .Params.about }}
<div class="bg-white bg-opacity-10 rounded-lg p-6 mb-6 border border-white border-opacity-20">
<h2 class="text-xl font-bold mb-4">{{ .title }}</h2>
<div class="space-y-4">
{{ range .sections }}
<div>
<h3 class="font-semibold mb-2">{{ .heading }}</h3>
<p class="text-sm opacity-80">{{ .content }}</p>
</div>
{{ end }}
</div>
</div>
{{ end }}