Migrate from previous project with updated dependencies ready for March 2025
This commit is contained in:
17
src/routes/+layout.svelte
Normal file
17
src/routes/+layout.svelte
Normal file
@@ -0,0 +1,17 @@
|
||||
<script>
|
||||
import '../app.css';
|
||||
import Navbar from 'components/NavBar.svelte';
|
||||
import Footer from 'components/Footer.svelte';
|
||||
|
||||
let { children } = $props();
|
||||
</script>
|
||||
|
||||
<Navbar />
|
||||
<div class="h-screen bg-ecsess-800">
|
||||
{@render children()}
|
||||
<Footer />
|
||||
</div>
|
||||
|
||||
<style>
|
||||
@reference tailwindcss;
|
||||
</style>
|
||||
10
src/routes/+page.svelte
Normal file
10
src/routes/+page.svelte
Normal file
@@ -0,0 +1,10 @@
|
||||
<title> McGill ECSESS </title>
|
||||
|
||||
<div class='flex flex-col items-center justify-center h-1/2 text-center'>
|
||||
<h1>
|
||||
Welcome to the ECSESS website!
|
||||
</h1>
|
||||
<p>
|
||||
This is a work in progress. Check back soon for updates!
|
||||
</p>
|
||||
</div>
|
||||
7
src/routes/components/+page.svelte
Normal file
7
src/routes/components/+page.svelte
Normal file
@@ -0,0 +1,7 @@
|
||||
<script>
|
||||
import Button from "components/Button.svelte";
|
||||
</script>
|
||||
|
||||
<Button>
|
||||
Button
|
||||
</Button>
|
||||
20
src/routes/council/+page.svelte
Normal file
20
src/routes/council/+page.svelte
Normal file
@@ -0,0 +1,20 @@
|
||||
<script>
|
||||
import Section from 'components/Section.svelte';
|
||||
</script>
|
||||
|
||||
<title> ECSESS council </title>
|
||||
|
||||
<Section>
|
||||
<h1>Meet the ECSESS council!</h1>
|
||||
<hr />
|
||||
<p>Group picture!</p>
|
||||
|
||||
<p>Here are the members of the ECSESS council!</p>
|
||||
<div>
|
||||
<h2>President</h2>
|
||||
<p>Name:</p>
|
||||
<p>Email:</p>
|
||||
<p>Year:</p>
|
||||
<p>Program:</p>
|
||||
</div>
|
||||
</Section>
|
||||
8
src/routes/events/+page.svelte
Normal file
8
src/routes/events/+page.svelte
Normal file
@@ -0,0 +1,8 @@
|
||||
<script>
|
||||
import Section from "components/Section.svelte";
|
||||
</script>
|
||||
|
||||
<title> ECSESS Events </title>
|
||||
|
||||
<Section>
|
||||
</Section>
|
||||
0
src/routes/join/+page.svelte
Normal file
0
src/routes/join/+page.svelte
Normal file
17
src/routes/resources/+page.svelte
Normal file
17
src/routes/resources/+page.svelte
Normal file
@@ -0,0 +1,17 @@
|
||||
<script>
|
||||
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>
|
||||
Reference in New Issue
Block a user