forked from jimcinbrisbane/viteCN
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from codenetwork/agm-page
Added an AGM links page
- Loading branch information
Showing
6 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import './App.css' | ||
import Rules from './Rules' | ||
import { Routes, Route } from "react-router-dom" | ||
import AnimatedCursor from "./component/cursor" | ||
import teamData from "./component/TeamData.json" | ||
import './agm.css'; | ||
|
||
function Agm() { | ||
return ( | ||
<div className="content-wrapper"> | ||
<div className="edges" style={{ color: "#111", fontFamily: 'Montserrat' }}> | ||
<div className="global-padding"> | ||
<h1>Code Network's 2023 AGM</h1> | ||
<p>We will be electing our 2024 Executive Team and voting on other business, including constitution amendments.</p> | ||
<p><b>When and Where:</b> 5-8pm Thursday 5/10/2023 at QUT GP-D106</p> | ||
<h2>Key Links</h2> | ||
<div style={{ display: 'flex', flexDirection: 'row', gap: '4px', flexWrap: 'wrap' }} id="agmLinks"> | ||
<a href="https://codenetwork.co/agmagenda" target="_blank">Agenda</a> | ||
<a href="https://codenetwork.co/agmpositions" target="_blank">Executive Positions</a> | ||
<a href="https://codenetwork.co/agmeoi" target="_blank">Executive EOI</a> | ||
<a href="https://codenetwork.co/agmconstitution" target="_blank">Constitution Amendments</a> | ||
</div> | ||
</div> | ||
</div > | ||
</div> | ||
) | ||
} | ||
|
||
export default Agm; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#agmLinks>a { | ||
padding: 8px; | ||
background-color: rgb(1, 214, 9); | ||
color: white; | ||
border-radius: 16px | ||
} | ||
|
||
#agmLinks>a:hover { | ||
background-color: rgb(150, 214, 150) | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters