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 => {
>
{
- const { name, img } = props;
+ const { name, img, url, alt } = props;
return (
-
{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"
}
];