26 lines
705 B
TypeScript
26 lines
705 B
TypeScript
|
|
export interface IndieButton {
|
||
|
|
img: string;
|
||
|
|
alt: string;
|
||
|
|
link?: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export let buttons: IndieButton[] = [
|
||
|
|
{
|
||
|
|
img: "iso8601.png",
|
||
|
|
alt: "A button with the text 'ISO 8601 YYYY-MM-DD'.",
|
||
|
|
link: "https://www.iso8601.com/",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
img: "queercoded.png",
|
||
|
|
alt: "A button with the text \"you're telling me a queer coded this\" on a rainbow background.",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
img: "madewithsveltekit.gif",
|
||
|
|
alt: "A red button with the text 'MADE WITH SVELTEKIT'.",
|
||
|
|
link: "https://svelte.dev",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
img: "trans-rights-now.png",
|
||
|
|
alt: "A button with the text 'TRANS RIGHTS NOW!' next to a trans flag.",
|
||
|
|
},
|
||
|
|
];
|