Moved buttons to it's own component and added the new compoenent to the footer.
This commit is contained in:
28
src/components/buttons/data/links.ts
Normal file
28
src/components/buttons/data/links.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
export interface LinkObj {
|
||||
href?: string;
|
||||
name?: string;
|
||||
type: "primary" | "secondary" | "twitter" | "patreon";
|
||||
}
|
||||
|
||||
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/introducing-code-name-potty-chart/",
|
||||
name: "Original Announcement",
|
||||
type: "secondary"
|
||||
},
|
||||
{
|
||||
type: "patreon"
|
||||
},
|
||||
{
|
||||
type: "twitter"
|
||||
}
|
||||
];
|
||||
|
||||
export default links;
|
||||
Reference in New Issue
Block a user