Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions sitemap.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
https://devclub.ca/?/
https://devclub.ca/?/devhacks
https://devclub.ca/?/devhacks/2027
https://devclub.ca/?/devhacks/2023
https://devclub.ca/?/devhacks/2024
https://devclub.ca/?/devhacks/2024/schedule
Expand Down
2 changes: 2 additions & 0 deletions src/routes/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import Contact from "./Contact";
import DevChamps from "./DevChamps";
import GitHub from "./Github";
import Hackathon from "./hackathon/Hackathon";
import Hackathon2027 from "./hackathon/Hackathon2027";
import HackathonArchive from "./hackathon/HackathonArchive";
import {
hackathonInfoLoader,
Expand Down Expand Up @@ -49,6 +50,7 @@ const router = createBrowserRouter(
<Route path="/github-tutorial" element={<GitHub />} />
<Route path="/link-tree" element={<LinkTree />} />
<Route path="/devhacks" element={<Hackathon />} />
<Route path="/devhacks/2027" element={<Hackathon2027 />} />
<Route path="/events" element={<Events />} />
<Route path="/merch" element={<Merch />} />
<Route
Expand Down
48 changes: 48 additions & 0 deletions src/routes/hackathon/Hackathon2027.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import "@/styles/Hackathon.scss";

import { Button } from "@mui/material";

function Hackathon2027() {
return (
<div className="hackathon-container" dir="ltr">
<div className="hackathon-welcome container">
<h1 className="hackathon-welcome heading">&lt;.devHacks 2027&gt;</h1>
<h2
className="hackathon-welcome description"
style={{ textAlign: "center" }}
>
{"Manitoba's largest "}
<del>24-hour</del>{" "}
<strong>
<em>48-hour</em>
</strong>{" "}
hackathon.
</h2>
<h2 className="hackathon-welcome sub-heading">
📅 Feb. 19 - 21, 2027
<br />
📍 Engineering, Information and Technology Complex, University of
Manitoba, Winnipeg, MB
</h2>
<div
className="hackathon-welcome btn-wrapper"
style={{ justifyContent: "center" }}
>
<Button
variant="contained"
sx={{
fontSize: "1.5rem",
fontFamily: "inherit",
mt: 3,
textTransform: "none",
}}
>
COMING SOON
</Button>
</div>
</div>
</div>
);
}

export default Hackathon2027;
Loading