Skip to content

Commit

Permalink
Added /hacks/schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
rishit-singh committed Sep 17, 2023
1 parent a958aa7 commit 14e64c2
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
14 changes: 14 additions & 0 deletions frontend/src/app/hacks/schedule/Body.tsx
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&amp;single=true&amp;widget=true&amp;headers=false" className={"h-full w-[50vw]"}></iframe>
</div>
</div>
</div>;
}
17 changes: 17 additions & 0 deletions frontend/src/app/hacks/schedule/Header.tsx
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>
}

10 changes: 10 additions & 0 deletions frontend/src/app/hacks/schedule/page.tsx
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>;
}

0 comments on commit 14e64c2

Please sign in to comment.