about summary refs log tree commit diff
path: root/src/lib/strings/headings.ts
blob: a88a696458d7ce63ba2ba3e3f984158a3753e1dd (plain) (blame)
1
2
3
4
export function bskyTitle(page: string, unreadCountLabel?: string) {
  const unreadPrefix = unreadCountLabel ? `(${unreadCountLabel}) ` : ''
  return `${unreadPrefix}${page} - Bluesky`
}