-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a958aa7
commit 14e64c2
Showing
3 changed files
with
41 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,14 @@ | ||
import {Timer} from "@/app/hacks/Timer"; | ||
import {SocialIcons} from "@/app/SocialIcons"; | ||
|
||
export function Body() | ||
{ | ||
return <div className={"grid-rows-2 bg-hacks-bg-black items-center"}> | ||
<div className={"flex flex-col items-center mt-3"}> | ||
<span className={"text-3xl max-[850px]:text-xl"}>Schedule</span> | ||
<div className={"flex flex-col items-center justify-center gap-[7vh] max-[850px]:gap-[8vh] mt-[4vh] max-[850px]:mt-[9vh] max-h-full h-[100vh]"}> | ||
<iframe src="https://docs.google.com/spreadsheets/d/e/2PACX-1vRyF8-IjcBAjemcPYusfUjDub2ZY1qsMOeYzVBfq3bZrHJn0RQ498RVPvAz45TQUmaoGpWZMWGchkfV/pubhtml?gid=1141432285&single=true&widget=true&headers=false" className={"h-full w-[50vw]"}></iframe> | ||
</div> | ||
</div> | ||
</div>; | ||
} |
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,17 @@ | ||
import {useState} from "react"; | ||
import {IconLabel} from "@/app/hacks/IconLabel"; | ||
|
||
export function Header() | ||
{ | ||
return <div className = {"bg-hacks-nav-black w-full font-audiowide "}> | ||
<div className = {"grid grid-rows-1 gap-1"}> | ||
<div className={"grid items-end mt-2"}> | ||
<div className={"flex flex-col gap-2"}> | ||
<div className={"text-6xl max-[1100px]:text-3xl self-center"}> Langara <span className={"text-lang-orange"}>Hacks</span></div> | ||
<div className={"text-s max-[850px]:text-sm self-center"}> Collaborate, Create, Innovate </div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
} | ||
|
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 @@ | ||
import {Body} from "./Body"; | ||
import {Header} from "./Header"; | ||
|
||
export default function Page() | ||
{ | ||
return <div className={"grid grid-rows bg-navs-bg-black h-full font-audiowide"}> | ||
<Header/> | ||
<Body/> | ||
</div>; | ||
} |