add site files

This commit is contained in:
Peter Domínguez 2025-06-04 23:57:07 -04:00
parent ce3b8c08c5
commit 4e826be104
11 changed files with 449 additions and 0 deletions

33
layouts/index.html Normal file
View file

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en">
{{ partial "head.html" . }}
<body>
<!-- Background Animation -->
<div class="bg-animation" id="bgAnimation"></div>
<div class="container mx-auto px-4 py-12 max-w-md">
<!-- Profile Section -->
{{ partial "profile.html" . }}
<!-- Links Section -->
{{ partial "link-card.html" . }}
<!-- Spotify Embed -->
{{ partial "spotify-playlist.html" . }}
<!-- Embed with hue-shift filter -->
<!-- style="filter: hue-rotate(150deg) saturate(0.6) brightness(0.9);" -->
<!-- About Me section (If you want to write about yourself, uncomment the section below)-->
{{ partial "about.html" . }}
<footer class="text-center text-xs opacity-60">
Made with <a href="https://www.debian.org">Debian</a>, <a href="https://gohugo.io">Hugo</a> and <a href="https://github.com/cx48/LucentLink-Hugo">LucentLink</a>
</footer>
</div>
<script src="js/script.js"></script>
</body>
</html>