Files
2025-11-13 05:05:53 +08:00

31 lines
488 B
TypeScript

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
}
}