sbr intro and esprit logo

This commit is contained in:
2026-08-15 20:58:57 +02:00
parent eaa11dbe78
commit f0fa19df0f
5 changed files with 17 additions and 10 deletions
+1
View File
@@ -12,6 +12,7 @@ const releases = await getCollection('esprit');
<TerminalLayout title="ESPRIT Releases" description="ESPRIT releases - Amiga DemoMaker utilities, intro tools and creative software from the demoscene.">
<TerminalShell client:load>
<AnsiArt html={BANNER_ESPRIT} />
<img src="/images/esprit-logo.png" alt="ESPRIT" style="width:100%; max-width: 640px; display:block; margin: 0 auto 1rem;" />
<NavBar />
<h1>ESPRIT Releases</h1>
<p>A collection of demos built on the Amiga 500.</p>
+4 -1
View File
@@ -72,7 +72,10 @@ const tools = remaining.filter((r) => r.data.platform === 'DOS');
<p>Credits: {release.data.credits.map((c) => `${c.role} - ${c.name}`).join(' | ')}</p>
{release.data.download_url && <p><a href={release.data.download_url}>Download</a></p>}
</div>
<pre class="diz-box">{release.data.file_id_diz}</pre>
{release.data.screenshot
? <img src={release.data.screenshot} alt={release.data.title} class="diz-box" style="width:100%; max-width:300px; height:auto;" />
: <pre class="diz-box">{release.data.file_id_diz}</pre>
}
</div>
))}
<NavBar />