From ece1acf6bdb2523dc0d0b9b4b5a8b81bc06b07b3 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Wed, 25 Feb 2026 23:05:12 +0100 Subject: [PATCH] fix(gallery): missing page title if navigating directly to /gallery --- app/pages/gallery.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/pages/gallery.vue b/app/pages/gallery.vue index 3188d04..082b9e8 100644 --- a/app/pages/gallery.vue +++ b/app/pages/gallery.vue @@ -4,6 +4,10 @@ import type { InternalApi } from "nitropack/types"; import { promiseTimeout, useElementSize } from "@vueuse/core"; import gsap from "gsap"; +useHead({ + title: "Gallery - Pihkaal", +}); + const { data: images } = await useAsyncData( "gallery", () => $fetch("/api/gallery"),