feat: add license block

This commit is contained in:
saicaca
2023-11-03 14:10:54 +08:00
parent a20c647495
commit c642691dc8
13 changed files with 111 additions and 8 deletions

View File

@@ -1,6 +1,7 @@
export type SiteConfig = {
title: string,
subtitle: string,
url: string,
lang: string,
@@ -36,4 +37,10 @@ export type ProfileConfig = {
url: string,
icon: string,
}[],
};
};
export type LicenseConfig = {
enable: boolean;
name: string,
url: string,
}