init
This commit is contained in:
32
types/siteConfig.ts
Normal file
32
types/siteConfig.ts
Normal file
@@ -0,0 +1,32 @@
|
||||
|
||||
export type AuthorsConfig = {
|
||||
name: string
|
||||
url: string
|
||||
}
|
||||
export type ThemeColor = {
|
||||
media: string
|
||||
color: string
|
||||
}
|
||||
export type SiteConfig = {
|
||||
name: string
|
||||
tagLine?: string
|
||||
description?: string
|
||||
url: string
|
||||
authors: AuthorsConfig[]
|
||||
socialLinks?: {
|
||||
github?: string
|
||||
bluesky?: string
|
||||
twitter?: string
|
||||
twitterZh?: string
|
||||
discord?: string
|
||||
email?: string
|
||||
}
|
||||
creator: string
|
||||
themeColors?: string | ThemeColor[]
|
||||
defaultNextTheme?: string
|
||||
icons: {
|
||||
icon: string
|
||||
shortcut?: string
|
||||
apple?: string
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user