Add configuration example, enhance song display with history, and improve UI responsiveness
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m50s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m50s
This commit is contained in:
parent
84f9502b4a
commit
46cc5eb8a1
6 changed files with 223 additions and 62 deletions
10
index.html
10
index.html
|
@ -12,6 +12,11 @@
|
|||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
||||
<meta name="apple-mobile-web-app-title" content="cmzi.uk" />
|
||||
<link rel="manifest" href="/site.webmanifest" />
|
||||
<!-- Performance hints: preconnect / dns-prefetch for Last.fm API/CDN -->
|
||||
<link rel="preconnect" href="https://lastfm.freetls.fastly.net" crossorigin>
|
||||
<link rel="dns-prefetch" href="//lastfm.freetls.fastly.net">
|
||||
<link rel="preconnect" href="https://lastfm-img2.akamaized.net" crossorigin>
|
||||
<link rel="dns-prefetch" href="//lastfm-img2.akamaized.net">
|
||||
|
||||
<link rel="stylesheet" href="/src/style.css">
|
||||
</head>
|
||||
|
@ -38,8 +43,9 @@
|
|||
|
||||
<!-- Left Column: Profile Picture and Social Links -->
|
||||
<div class="flex-shrink-0 text-center mb-6 md:mb-0">
|
||||
<img src="https://avatars.githubusercontent.com/u/5846077?v=4" alt="Cameron B. R. Redmore"
|
||||
class="rounded-full w-32 h-32 md:w-40 md:h-40 mx-auto border-4 border-white/20 shadow-lg hover-glass">
|
||||
<img src="/avatar.webp" alt="Cameron B. R. Redmore"
|
||||
class="rounded-full w-32 h-32 md:w-40 md:h-40 mx-auto border-4 border-white/20 shadow-lg hover-glass"
|
||||
loading="lazy" decoding="async">
|
||||
<div class="mt-6 flex justify-center space-x-4">
|
||||
<a href="https://github.com/CameronRedmore" target="_blank"
|
||||
class="hover-glass hover:text-cyan-200 p-2 rounded-full" aria-label="GitHub Profile">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue