This repository has been archived on 2025-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
lcm-potty-chart/src/components/buttons/data/links.ts
2022-09-23 15:27:31 -04:00

29 lines
531 B
TypeScript

export interface LinkObj {
href?: string;
name?: string;
type: "primary" | "secondary" | "twitter" | "ko-fi";
}
type Links = LinkObj[];
const links: Links = [
{
href: "https://docs.google.com/document/d/1hrerGKHTO3iach8A-CabtfIB4lyZWlgO8EGTyOCrI2Y",
name: "Roadmap and Progress",
type: "secondary"
},
{
href: "https://lucidcreations.media/lcm-potty-chart/",
name: "Official Announcement",
type: "secondary"
},
{
type: "ko-fi"
},
{
type: "twitter"
}
];
export default links;