's'
This commit is contained in:
31
types/site.ts
Normal file
31
types/site.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
export interface SiteConfig {
|
||||
basic: {
|
||||
title: string
|
||||
description: string
|
||||
keywords: string
|
||||
}
|
||||
appearance: {
|
||||
logo: string
|
||||
favicon: string
|
||||
theme: 'light' | 'dark' | 'system'
|
||||
}
|
||||
navigation: {
|
||||
linkTarget: '_blank' | '_self'
|
||||
}
|
||||
}
|
||||
|
||||
export interface SiteInfo {
|
||||
basic: {
|
||||
title: string
|
||||
description: string
|
||||
keywords: string
|
||||
}
|
||||
appearance: {
|
||||
logo: string
|
||||
favicon: string
|
||||
theme: string
|
||||
}
|
||||
navigation: {
|
||||
linkTarget: string
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user