Dealing with empty and undefined title

This commit is contained in:
Felix Nie 2025-03-17 13:32:20 +08:00
parent ff16deb865
commit 594b6a7b58
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ const config: QuartzConfig = {
fontOrigin: "googleFonts",
cdnCaching: true,
typography: {
title: "Playwrite US Trad",
title: "Playwrite DK Loopet",
header: "Schibsted Grotesk",
body: "Source Sans Pro",
code: "IBM Plex Mono",

View File

@ -25,7 +25,7 @@ export type FontSpecification =
export interface Theme {
typography: {
title: FontSpecification | undefined
title?: FontSpecification
header: FontSpecification
body: FontSpecification
code: FontSpecification