From f2969550276b6877c1306627aecb20715cae1132 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Wed, 30 Oct 2024 19:39:47 +0000 Subject: [PATCH] feat: add some stuff and things (#32) Reviewed-on: https://codeberg.org/nhcarrigan/portfolio/pulls/32 Co-authored-by: Naomi Carrigan Co-committed-by: Naomi Carrigan --- src/app/art/page.tsx | 2 +- src/app/games/page.tsx | 2 +- src/components/art.tsx | 5 ++-- src/components/game.tsx | 16 ++++++++--- src/config/Art.ts | 58 ++++++++++++++++++++++++++++++++++---- src/config/Games.ts | 40 ++++++++++++++++++++++++++ src/config/Jobs.ts | 4 +-- src/config/Testimonials.ts | 8 ++++++ 8 files changed, 120 insertions(+), 15 deletions(-) diff --git a/src/app/art/page.tsx b/src/app/art/page.tsx index 5692173..d5c2635 100644 --- a/src/app/art/page.tsx +++ b/src/app/art/page.tsx @@ -12,7 +12,7 @@ const Arts = (): JSX.Element => {
{Art.sort((a, b) => a.name.localeCompare(b.name)).map((art) => ( - + ))}
diff --git a/src/app/games/page.tsx b/src/app/games/page.tsx index f910308..c177861 100644 --- a/src/app/games/page.tsx +++ b/src/app/games/page.tsx @@ -15,7 +15,7 @@ const Gamez = (): JSX.Element => {
{Games.sort((a, b) => a.name.localeCompare(b.name)).map((game) => ( - + ))}
diff --git a/src/components/art.tsx b/src/components/art.tsx index 5a7a590..3f62e38 100644 --- a/src/components/art.tsx +++ b/src/components/art.tsx @@ -5,10 +5,11 @@ interface ArtProps { img: string; artist: string; url: string; + alt: string; } export const ArtComponent = (props: ArtProps): JSX.Element => { - const { name, img, artist, url } = props; + const { name, img, artist, url, alt } = props; return (
@@ -20,7 +21,7 @@ export const ArtComponent = (props: ArtProps): JSX.Element => { > {name} { - const { name, img } = props; + const { name, img, url, alt } = props; return (
-

{name}

+ +

{name}

+
{ > {name} @@ -437,7 +437,7 @@ The bot also featured the ability to define teams and find matches with opponent title: "Hacktoberfest Community Moderator", company: "DigitalOcean", start: new Date("April 5 2021"), - end: null, + end: new Date("November 5 2024"), link: "https://hacktoberfest.com", type: "volunteer", logo: "digitalocean.jpeg", diff --git a/src/config/Testimonials.ts b/src/config/Testimonials.ts index 1c8a727..9f9d216 100644 --- a/src/config/Testimonials.ts +++ b/src/config/Testimonials.ts @@ -70,5 +70,13 @@ export const Testimonials: { sourceIcon: faLinkedin, sourceUrl: "https://www.linkedin.com/in/naomi-lgbt/details/recommendations/", sourceName: "LinkedIn" + }, + { + name: "Alexis Madsen", + date: new Date("October 28 2024"), + content: "Naomi always had the knowledge and information for nearly every question I ever had. It was such an honor to work with her, and anyone would be lucky to have the chance for her to work with you or your team.", + sourceIcon: faLinkedin, + sourceUrl: "https://www.linkedin.com/in/naomi-lgbt/details/recommendations/", + sourceName: "LinkedIn" } ];