We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39e95f9 commit 9a5bcceCopy full SHA for 9a5bcce
1 file changed
src/pages/index.astro
@@ -272,6 +272,9 @@ const metadata = {
272
teaser.style.zIndex = '9999';
273
teaser.style.transition = 'opacity 3s ease-in';
274
275
+ const a = document.createElement('a');
276
+ a.href = '/2025-12-31-version-7';
277
+
278
const img = document.createElement('img');
279
img.src = '/Lychee-v7-teasing.png';
280
img.alt = 'Teaser Image';
@@ -281,7 +284,8 @@ const metadata = {
281
284
img.style.opacity = '0';
282
285
img.style.transition = 'transform 6s ease-in-out, opacity 3s ease';
283
286
- teaser.appendChild(img);
287
+ a.appendChild(img);
288
+ teaser.appendChild(a);
289
document.body.appendChild(teaser);
290
291
// Start the zoom animation
0 commit comments