This commit is contained in:
Alex Rennie-Lis
2026-06-29 00:37:10 +01:00
parent e2e326b4ac
commit a208ffb45f

View File

@@ -1,6 +1,6 @@
<script> <script>
import { onMount } from 'svelte'; import { onMount } from 'svelte';
import { PUBLIC_GALLERY_NAME } from '$env/dynamic/public'; import { env } from '$env/dynamic/public';
// Svelte 5 Runes for Reactivity // Svelte 5 Runes for Reactivity
let photos = $state([]); let photos = $state([]);
@@ -177,7 +177,7 @@
<div class="min-h-screen bg-zinc-950 text-zinc-100"> <div class="min-h-screen bg-zinc-950 text-zinc-100">
<header class="sticky top-0 z-10 border-b border-zinc-800 bg-zinc-950/80 backdrop-blur-md px-6 py-4 flex justify-between items-center"> <header class="sticky top-0 z-10 border-b border-zinc-800 bg-zinc-950/80 backdrop-blur-md px-6 py-4 flex justify-between items-center">
<h1 class="text-xl font-bold tracking-wide">{PUBLIC_GALLERY_NAME}</h1> <h1 class="text-xl font-bold tracking-wide">{env.PUBLIC_GALLERY_NAME}</h1>
<span class="text-xs text-zinc-500 uppercase tracking-widest bg-zinc-900 border border-zinc-800 px-3 py-1 rounded-full">Secure Session</span> <span class="text-xs text-zinc-500 uppercase tracking-widest bg-zinc-900 border border-zinc-800 px-3 py-1 rounded-full">Secure Session</span>
</header> </header>