import { PAGE_TITLE } from '@/constants/page'; export function getPageTitle(title?: string) { if (!title) return PAGE_TITLE; return `${title} - ${PAGE_TITLE}`; }