Built resume template

This commit is contained in:
srleom
2024-03-19 16:14:57 +08:00
parent b266e46946
commit 36936150cf
73 changed files with 8970 additions and 0 deletions

24
src/types.ts Normal file
View File

@ -0,0 +1,24 @@
export type SiteConfig = {
author: string
title: string
description: string
lang: string
ogLocale: string
date: {
locale: string | string[] | undefined
options: Intl.DateTimeFormatOptions
}
}
export type PaginationLink = {
url: string
text?: string
srLabel?: string
}
export type SiteMeta = {
title: string
description?: string
ogImage?: string | undefined
articleDate?: string | undefined
}