Home Page UI #88

Merged
a3thakra merged 19 commits from feat/home-page into main 2021-07-27 02:13:35 -04:00
3 changed files with 48 additions and 1 deletions
Showing only changes of commit 9f995c7b6d - Show all commits

View File

@ -1 +0,0 @@
Visit the [playground](/playground)

20
pages/index.module.css Normal file
View File

@ -0,0 +1,20 @@
.intro {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.cards {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.connect {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}

28
pages/index.tsx Normal file
View File

@ -0,0 +1,28 @@
import React from "react";
import styles from "./index.module.css";
export default function Home() {
return (
<>
<div className={styles.intro}>
<h1>Computer Science Club</h1>
<p>University of Waterloo&apos;s student computing community</p>
</div>
<div className={styles.cards}>
<div className={styles.events}>
<h3>Upcoming Events</h3>
<p>See past events here</p>
<p>event cards</p>
</div>
<div className={styles.news}>
<h3>News</h3>
<p>Updates from our execs! See past news here</p>
<p>news card</p>
</div>
</div>
<div className={styles.connect}>
<p>socials</p>
</div>
</>
);
}