import { getBrand } from "./identity" /** Build a route's as `${brand.name} · ${suffix}`. */ export function pageTitle(suffix: string): { title: string }[] { return [{ title: `${getBrand().name} · ${suffix}` }] }