updated empty page notification

This commit is contained in:
2026-05-14 12:26:34 +02:00
parent 5c106b7e28
commit 187970c929
2 changed files with 6 additions and 8 deletions
+4 -4
View File
@@ -108,13 +108,13 @@ const isAdmin = Astro.cookies.get('admin_session')?.value === '1';
{posts.length === 0 && !error && (
<div class="glass p-12 md:p-20 text-center max-w-2xl mx-auto">
<div class="font-display italic text-[var(--subtext0)] text-sm tracking-[0.3em] uppercase mb-4">Notice</div>
<div class="font-display italic text-[var(--subtext0)] text-sm tracking-[0.3em] uppercase mb-4">Nothing here yet</div>
<p class="font-display italic text-[var(--text)] text-2xl md:text-3xl leading-snug mb-2">
The exhibition is currently being arranged.
No posts to show.
</p>
<p class="font-sans text-[var(--subtext1)] mt-4">Please return shortly.</p>
<p class="font-sans text-[var(--subtext1)] mt-4">Check back soon.</p>
{isAdmin && (
<a href="/admin/editor" class="btn-stamp mt-8">Hang the first work</a>
<a href="/admin/editor" class="btn-stamp mt-8">Create the first post</a>
)}
</div>
)}