29 lines
531 B
TypeScript
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;
|