feat(web/m7-363): per-route svelte:head titles for static routes
Add browser tab titles to all 18 static page routes using the pageTitle() helper from $lib/branding. Titles follow the Minstrel · Section format. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { pageTitle } from '$lib/branding';
|
||||
import { createAlbumsAlphaInfiniteQuery } from '$lib/api/albums';
|
||||
import AlbumCard from '$lib/components/AlbumCard.svelte';
|
||||
import AlphabeticalGrid from '$lib/components/AlphabeticalGrid.svelte';
|
||||
@@ -14,6 +15,8 @@
|
||||
const showSkeleton = useDelayed(() => query.isPending);
|
||||
</script>
|
||||
|
||||
<svelte:head><title>{pageTitle('Library · Albums')}</title></svelte:head>
|
||||
|
||||
<div class="space-y-4">
|
||||
<header>
|
||||
<h1 class="font-display text-2xl font-medium text-text-primary">Albums</h1>
|
||||
|
||||
Reference in New Issue
Block a user