From 55798b5490216d4c07af9b401d09fcd70dd71f86 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Mon, 16 Mar 2026 13:49:43 +0100 Subject: [PATCH] feat: update title --- app/app.vue | 4 ++-- app/pages/gallery.vue | 2 +- nuxt.config.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/app.vue b/app/app.vue index ceece8f..e912066 100644 --- a/app/app.vue +++ b/app/app.vue @@ -3,8 +3,8 @@ const { locale } = useI18n(); const app = useAppStore(); const pageTitle = computed(() => { - if (!app.booted) return "Pihkaal"; - return `${$t(`screens.${app.screen}`)} - Pihkaal`; + if (!app.booted) return "Pihkaal - Developer"; + return `${$t(`screens.${app.screen}`)} | Pihkaal - Developer`; }); useHead({ diff --git a/app/pages/gallery.vue b/app/pages/gallery.vue index ef0a12e..776d163 100644 --- a/app/pages/gallery.vue +++ b/app/pages/gallery.vue @@ -6,7 +6,7 @@ import gsap from "gsap"; const { t } = useI18n(); useHead({ - title: computed(() => `${t("screens.gallery")} - Pihkaal`), + title: computed(() => `${t("screens.gallery")} | Pihkaal - Developper`), }); const { data: images } = await useAsyncData( diff --git a/nuxt.config.ts b/nuxt.config.ts index 263873a..c660d42 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -1,4 +1,4 @@ -const TITLE = "Pihkaal"; +const TITLE = "Pihkaal - Developer"; const DESCRIPTION = "23yo developer from Brittany. I love programming and taking photos."; const URL = "https://pihkaal.me";