oxen-website/utils/metadata.ts

6 lines
141 B
TypeScript
Raw Normal View History

2021-01-22 03:43:42 +01:00
import { METADATA } from '../constants';
export function generateTitle(prefix: string) {
2021-01-29 03:50:49 +01:00
return `${prefix} - ${METADATA.TITLE_SUFFIX}`;
2021-01-22 03:43:42 +01:00
}