Checkpoint: Most pages are setup and components are ready to be implemented

This commit is contained in:
Antoine Phan
2025-03-06 21:26:47 -05:00
parent 6018a7c0f1
commit e868c6252b
8 changed files with 69 additions and 19 deletions

View File

@@ -0,0 +1,19 @@
<script>
import ResourceCard from 'components/ResourceCard.svelte';
import Section from 'components/Section.svelte';
let isElectionTime = $state(true);
</script>
<title> Join ECSESS !!! </title>
<Section>
<p class="page-title">Want to join ECSESS Council?</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}
</Section>