generated from nhcarrigan/template
Closes #6 Closes #7 Closes #8 Reviewed-on: https://codeberg.org/nhcarrigan/portfolio/pulls/9 Co-authored-by: Naomi <commits@nhcarrigan.com> Co-committed-by: Naomi <commits@nhcarrigan.com>
22 lines
356 B
TypeScript
22 lines
356 B
TypeScript
export const Logos: {
|
|
link: string;
|
|
file: string;
|
|
alt: string;
|
|
}[] = [
|
|
{
|
|
link: "https://freecodecamp.org",
|
|
file: "fcc_primary_large.svg",
|
|
alt: "freeCodeCamp"
|
|
},
|
|
{
|
|
link: "https://rythm.fm",
|
|
file: "rythm.svg",
|
|
alt: "Rythm"
|
|
},
|
|
{
|
|
link: "https://deepgram.com",
|
|
file: "deepgram.svg",
|
|
alt: "Deepgram AI"
|
|
}
|
|
];
|