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,11 @@
{{/* layouts/partials/spotify-playlist.html */}}
{{ with .Params.spotifyPlaylist.iframe }}
<div class="spotify-widget pulsating-box border-trace h-auto rounded-lg p-6 mb-8 border text-white mt-6"
style="background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1);">
<div class="flex items-center mb-4">
<i class="fab fa-spotify text-2xl mr-3 mb-1"></i>
<h3 class="text-xl font-bold">My Spotify Playlist</h3>
</div>
{{ . | safeHTML }}
</div>
{{ end }}