Search Engine Optimization

This commit is contained in:
Antoine Phan
2025-08-25 11:35:18 -04:00
parent 9acc9b1ae1
commit e4c86384dc
12 changed files with 73 additions and 22 deletions

View File

@@ -1,19 +1,24 @@
<script>
import ResourceCard from 'components/ResourceCard.svelte';
import Section from 'components/Section.svelte';
import SeoMetaTags from 'components/SeoMetaTags.svelte';
let isElectionTime = $state(true);
let { data } = $props();
</script>
<title> Join ECSESS !!! </title>
<SeoMetaTags
title="Join the ECSESS student council!!!"
description="Learn how you can join the ECSESS council and make an impact on the ECSE student community at McGill University!"
canonical={data.canonical}
/>
<Section>
<p class="page-title">Want to join ECSESS Council?</p>
<p>Come back around March for application period!</p>
{#if isElectionTime}
<ResourceCard title="Involvement Booklet">
A guide to involvement with ECSESS and its subcommittees (The Factory, IEEE McGill, CodeJam).
</ResourceCard>
{:else}
<p>Come back around March for application period!</p>
{/if}
<ResourceCard title="Involvement Booklet">
A guide to involvement with ECSESS and its subcommittees (The Factory, IEEE McGill, CodeJam).
</ResourceCard>
{:else}{/if}
</Section>