Capital/app/consts.tsx

32 lines
967 B
TypeScript
Raw Normal View History

2024-02-24 08:07:59 +00:00
import { ReactNode } from "react";
import GitHubIcon from "@mui/icons-material/GitHub";
import TwitterIcon from "@mui/icons-material/Twitter";
import CoffeeIcon from "@mui/icons-material/Coffee";
export interface RelatedAccount {
icon: ReactNode;
platform: string;
accountName: string;
link: string;
}
export const SITE_NAME = "Goatshed";
2024-02-24 10:54:47 +00:00
export const SITE_DESCRIPTION = "山羊寒舍,在这里最终智羊工作室的最新动态。";
2024-02-24 13:56:35 +00:00
export const SITE_URL = "https://smartsheep.studio";
2024-02-24 08:07:59 +00:00
export const RELATED_ACCOUNTS: RelatedAccount[] = [
{ icon: <GitHubIcon />, platform: "GitHub", accountName: "@smartsheep-hq", link: "https://github.com/smartsheep-hq" },
2024-02-24 13:56:35 +00:00
{
icon: <TwitterIcon />,
platform: "Twitter",
accountName: "@littlesheepovo",
link: "https://twitter.com/littlesheepovo",
},
{
icon: <CoffeeIcon />,
platform: "Ko-fi",
accountName: "@littlesheep2code",
link: "https://ko-fi.com/littlesheep2code",
},
];