/** * Global constants for the application */ export const SITE_TITLE = 'Junwon'; export const SITE_DESCRIPTION = 'Korean Palace Recipe Collection'; /** * Gets a formatted page title with site name * @param pageTitle The specific page title * @returns "Page | SITE_TITLE" or just "SITE_TITLE" if no page title provided */ export function getPageTitle(pageTitle?: string): string { if (!pageTitle) return SITE_TITLE; return `${pageTitle} | ${SITE_TITLE}`; }