diff --git a/client/src/components/main/Footer.tsx b/client/src/components/main/Footer.tsx index 9cc835c..081d34c 100644 --- a/client/src/components/main/Footer.tsx +++ b/client/src/components/main/Footer.tsx @@ -125,15 +125,13 @@ export default function Footer() { development club

- {Object.entries(social_media).map( - ([platform, data], index) => ( - - ), - )} + {social_media.map((data) => ( + + ))}
- + ); diff --git a/client/src/gamedev-metadata.json b/client/src/gamedev-metadata.json index 2c12e71..1c85565 100644 --- a/client/src/gamedev-metadata.json +++ b/client/src/gamedev-metadata.json @@ -1,10 +1,16 @@ { - "social_media": { - "x": { "url": "twitter.com", "alt_text": "X (Twitter)" }, - "discord": { "url": "discord.com" }, - "github": { "url": "github.com", "alt_text": "GitHub" }, - "youtube": { "url": "youtube.com", "alt_text": "YouTube" } - }, - "art_showcase_description": "Here are some of our favourite artworks from this years gamejams!", - "game_showcase_description": "Here are some winning games of our recent game jams" + "social_media": [ + { + "url": "https://www.facebook.com/people/Game-Development-UWA/61576948012356/", + "alt_text": "Facebook" + }, + { + "url": "https://discord.com/invite/JvnuVyMUff", + "alt_text": "Discord" + }, + { + "url": "https://www.instagram.com/gamedevelopmentuwa", + "alt_text": "Instagram" + } + ] }