Checkpoint: Most pages are setup and components are ready to be implemented
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
<title> ECSESS council </title>
|
||||
|
||||
<Section>
|
||||
<p class="page-title">Meet the ECSESS council!</p>
|
||||
<p class="page-title">Meet the council!</p>
|
||||
|
||||
<p>Group picture!</p>
|
||||
|
||||
|
||||
@@ -5,4 +5,5 @@
|
||||
<title> ECSESS Events </title>
|
||||
|
||||
<Section>
|
||||
<p class='page-title'>Events</p>
|
||||
</Section>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -1,17 +1,15 @@
|
||||
<script>
|
||||
import Section from "components/Section.svelte";
|
||||
import Section from 'components/Section.svelte';
|
||||
</script>
|
||||
|
||||
<title> Resources </title>
|
||||
|
||||
<div class="">
|
||||
<Section>
|
||||
<h1>
|
||||
Resources for ECSE students at McGill University, presented by ECSESS!
|
||||
</h1>
|
||||
|
||||
<h2>Technical</h2>
|
||||
|
||||
<h2>Academic</h2>
|
||||
</Section>
|
||||
</div>
|
||||
<Section>
|
||||
<p class='page-title'> Resources </p>
|
||||
|
||||
<h1>Resources for ECSE students at McGill University, presented by ECSESS!</h1>
|
||||
|
||||
<h2>Technical</h2>
|
||||
|
||||
<h2>Academic</h2>
|
||||
</Section>
|
||||
|
||||
@@ -1,7 +1,22 @@
|
||||
<script>
|
||||
import Button from "components/Button.svelte";
|
||||
import Button from 'components/Button.svelte';
|
||||
import ResourceCard from 'components/ResourceCard.svelte';
|
||||
import Section from 'components/Section.svelte';
|
||||
</script>
|
||||
|
||||
<Button>
|
||||
Button
|
||||
</Button>
|
||||
<title> Component showroom for developers </title>
|
||||
|
||||
<Section>
|
||||
<Button>Button</Button>
|
||||
<ResourceCard></ResourceCard>
|
||||
</Section>
|
||||
<Section black>
|
||||
<Button>Button</Button>
|
||||
<ResourceCard title="Workshop feedback">
|
||||
Description of the workshop
|
||||
</ResourceCard>
|
||||
|
||||
</Section>
|
||||
<Section>
|
||||
<Button>Button</Button>
|
||||
</Section>
|
||||
|
||||
Reference in New Issue
Block a user