diff --git a/client/src/components/main/Footer.tsx b/client/src/components/main/Footer.tsx index 081d34c..3eeef5c 100644 --- a/client/src/components/main/Footer.tsx +++ b/client/src/components/main/Footer.tsx @@ -2,17 +2,12 @@ import { motion } from "framer-motion"; import { Calendar, - Clock, Gamepad2, - Handshake, Heart, Home, - Link as LucideLink, Map, Palette, - Pencil, Sparkles, - Upload, Users, } from "lucide-react"; import Image from "next/image"; @@ -23,7 +18,6 @@ import { useRef } from "react"; import LinksList from "@/components/ui/LinksList"; import NetworkCanvas from "@/components/ui/NetworkCanvas"; import SocialIconButton from "@/components/ui/SocialIconButton"; -import { social_media } from "@/gamedev-metadata.json"; export interface ListLink { label: string; @@ -31,7 +25,12 @@ export interface ListLink { icon: ReactNode; } -const quickLinks: ListLink[] = [ +type socialMedia = { + url: string; + alt_text: string; +}; + +/*const quickLinks: ListLink[] = [ { label: "Join the Club", href: "#", @@ -44,7 +43,7 @@ const quickLinks: ListLink[] = [ }, { label: "Upcoming Jams", href: "#", icon: }, { label: "Resources", href: "#", icon: }, -]; +];*/ // Main navigation links (ideally should be shared with Navbar) export const mainLinks: ListLink[] = [ @@ -67,6 +66,25 @@ export const mainLinks: ListLink[] = [ }, ]; +const socialMedia: socialMedia[] = [ + { + 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", + }, + { + url: "https://game-development-uwa.itch.io/", + alt_text: "Itch.io", + }, +]; + export default function Footer() { const footerRef = useRef(null); return ( @@ -77,7 +95,7 @@ export default function Footer() { >
-
+

- Create • Play • Inspire + Design • Create • Play

- - UWAgamedev@gmail.com + + Email coming soon!

- Building the next generation of game developers at UWA game - development club + Building the next generation of game developers!

- {social_media.map((data) => ( + {socialMedia.map((data) => (
- } - links={quickLinks} - /> - } - links={mainLinks} - /> +
+ } + links={mainLinks} + /> +
@@ -156,30 +167,36 @@ export default function Footer() {
-
- © {new Date().getFullYear()} CFC Game Dev - - All rights reserved +
+
+ © {new Date().getFullYear()} CFC ~ GDUWA + + All rights reserved +
- window.open("/Constitution-V1.pdf")} - > - - Constitution - - -
- Made with - + window.open("/Constitution-V1.pdf")} > - - - in Perth, UWA +
+ Constitution +
+
+ +
+                  Made with
+                  
+                    
+                  
+                  in UWA, Perth
+                
+
diff --git a/client/src/gamedev-metadata.json b/client/src/gamedev-metadata.json deleted file mode 100644 index 1c85565..0000000 --- a/client/src/gamedev-metadata.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "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" - } - ] -}