Add configurable homepage social links

This commit is contained in:
爱喝水的木子
2026-03-20 14:31:24 +08:00
parent 8e6bd210a8
commit 8c7148f819
7 changed files with 379 additions and 10 deletions

10
types/site.ts Normal file
View File

@@ -0,0 +1,10 @@
export type SocialLink = {
id: string;
label: string;
url: string;
iconUrl?: string;
};
export type SiteSettings = {
socialLinks: SocialLink[];
};