export function usePageTitle(title: string | (() => string)) { const computedTitle = typeof title === 'function' ? computed(title) : ref(title) useHead({ title: computed(() => `${computedTitle.value} ยท Segur-OS`) }) }