mirror of
https://github.com/ChenQihan666/MyBlog-Next.git
synced 2026-08-14 07:33:07 +08:00
33 lines
485 B
TypeScript
33 lines
485 B
TypeScript
export type SocialObjects = {
|
|
name: SocialMedia;
|
|
href: string;
|
|
active: boolean;
|
|
linkTitle: string;
|
|
}[];
|
|
|
|
export type SocialIcons = {
|
|
[social in SocialMedia]: string;
|
|
};
|
|
|
|
export type SocialMedia =
|
|
| "Github"
|
|
| "Facebook"
|
|
| "Instagram"
|
|
| "LinkedIn"
|
|
| "Mail"
|
|
| "Twitter"
|
|
| "Twitch"
|
|
| "YouTube"
|
|
| "WhatsApp"
|
|
| "Snapchat"
|
|
| "Pinterest"
|
|
| "TikTok"
|
|
| "CodePen"
|
|
| "Discord"
|
|
| "GitLab"
|
|
| "Reddit"
|
|
| "Skype"
|
|
| "Steam"
|
|
| "Telegram"
|
|
| "Mastodon";
|