Payment:
{#if paymentLink}
@@ -89,7 +91,7 @@
href={paymentLink}
target="_blank"
rel="noopener noreferrer"
- class="text-left text-ecsess-800 underline-offset-4 hover:underline"
+ class="text-ecsess-800 text-left underline-offset-4 hover:underline"
>
Pay Here
diff --git a/src/components/event/EventTabPanel.svelte b/src/components/event/EventTabPanel.svelte
index bb1eed9..4d96785 100644
--- a/src/components/event/EventTabPanel.svelte
+++ b/src/components/event/EventTabPanel.svelte
@@ -6,7 +6,7 @@
type Category = 'allEvents' | 'academic' | 'professional' | 'social' | 'technical';
let { value, category, events } = $props<{
- value: Category;
+ value: Category;
category: Category;
events: EventPost[];
}>();
@@ -21,7 +21,7 @@
-
+
{#each filtered as e (e._id ?? e.name)}
+ // Social links data
+ const socialLinks = [
+ {
+ name: 'Instagram',
+ url: 'https://www.instagram.com/mcgill_ecsess/',
+ icon: 'instagram',
+ ariaLabel: 'Follow us on Instagram'
+ },
+ {
+ name: 'Facebook',
+ url: 'https://www.facebook.com/ECSESS',
+ icon: 'facebook',
+ ariaLabel: 'Follow us on Facebook'
+ },
+ {
+ name: 'LinkedIn',
+ url: 'https://www.linkedin.com/company/ecsess/',
+ icon: 'linkedin',
+ ariaLabel: 'Connect with us on LinkedIn'
+ },
+ {
+ name: 'Linktree',
+ url: 'https://linktr.ee/ecsess',
+ icon: 'linktree',
+ ariaLabel: 'Visit our Linktree'
+ },
+ {
+ name: 'Contact Us',
+ 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',
+ address: 'Trottier Building, ECSESS Lounge'
+ }
+ ];
+
+
+
diff --git a/src/components/layout/Footer.svelte b/src/components/layout/Footer.svelte
index 046f30b..d17c167 100644
--- a/src/components/layout/Footer.svelte
+++ b/src/components/layout/Footer.svelte
@@ -1,14 +1,202 @@
-
-