diff --git a/src/components/homepage/AffiliatedClubs.svelte b/src/components/homepage/AffiliatedClubs.svelte index b3509bc..bc1c373 100644 --- a/src/components/homepage/AffiliatedClubs.svelte +++ b/src/components/homepage/AffiliatedClubs.svelte @@ -1,123 +1,129 @@ -
-
- -
-

- Affiliated Clubs & Labs -

-

- Explore opportunities to enhance your skills, build innovative projects, and connect with - the engineering community through our affiliated organizations. -

-
- - -
- {#each clubs as club} -
- -
- -
- -
-
- {#if club.icon === Wrench} - - {:else if club.icon === Zap} - - {:else if club.icon === Code2} - - {/if} -
-

- {club.name} -

-
- - -

- {club.description} -

- - -
- {#each club.features as feature} -
-
- - {feature} - -
- {/each} -
- - - - Visit Website - - -
-
- {/each} -
- - -
-

- Want to get involved? Visit their websites to learn about upcoming events and how to join! -

-
+
+ +
+

+ Affiliated Clubs & Labs +

+

+ Explore opportunities to enhance your skills, build innovative projects, and connect with the + engineering community through our affiliated organizations. +

-
+ + +
+ {#each clubs as club, i (club.name)} + {@const Icon = club.icon} +
+ +
+ +
+ +
+
+
+

+ {club.name} +

+
+ + +

+ {club.description} +

+ + +
    + {#each club.features as feature (feature)} +
  • + + + {feature} + +
  • + {/each} +
+ + + + Visit Website + +
+
+ {/each} +
+ + +
+

+ Want to get involved? Visit their websites to learn about upcoming events and how to join! +

+
+ diff --git a/src/components/layout/Footer.svelte b/src/components/layout/Footer.svelte index d17c167..a75c5bd 100644 --- a/src/components/layout/Footer.svelte +++ b/src/components/layout/Footer.svelte @@ -32,12 +32,6 @@ url: 'mailto:ecsess.president@mcgilleus.ca', icon: 'email', ariaLabel: 'Send us an email' - }, - { - name: 'Lounge Location', - url: 'https://maps.app.goo.gl/4RHKGJEE8FfcDs1H8', - icon: 'location', - ariaLabel: 'View lounge location on map' } ]; @@ -45,19 +39,17 @@