The name and tagline live in one place, shared/utils/site.ts, and feed the header, the footer, the home page and the title template.
6 lines
255 B
TypeScript
6 lines
255 B
TypeScript
/** Name of the blog, used in the header, the page titles and the footer. */
|
|
export const SITE_NAME = 'CorralitoComing'
|
|
|
|
/** One-line description, used as the home page meta description. */
|
|
export const SITE_DESCRIPTION = 'Articles, guides and analysis.'
|