Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
start work on course selections
Browse files Browse the repository at this point in the history
  • Loading branch information
SJS830 committed Dec 4, 2023
1 parent e5222ae commit 69612eb
Show file tree
Hide file tree
Showing 3 changed files with 492 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export default function Navbar() {
<a href="/">Home</a>
<a href="/team">Team</a>
<a href="/opportunities">Opportunities</a>
<a href="https://docs.google.com/document/d/1ltKbFo0SDqg417J16mmhc8D6DiNpYxOr6op9mmxx0aA/edit?usp=sharing">Course Selection Guide</a>
</div>

{/*hamburger*/}
Expand Down Expand Up @@ -103,6 +104,10 @@ export default function Navbar() {
<a href="/opportunities" className="absolute top-[calc(48px+16vw)]">
<div className="absolute top-[4vw] text-[#FFFFFF]">Opportunities</div>
</a>

<a href="https://docs.google.com/document/d/1ltKbFo0SDqg417J16mmhc8D6DiNpYxOr6op9mmxx0aA/edit?usp=sharing" className="absolute top-[calc(48px+24vw)]">
<div className="absolute top-[4vw] text-[#FFFFFF]">Course Selection Guide</div>
</a>
</div>

<div
Expand Down
12 changes: 12 additions & 0 deletions app/courses/page.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export default function Courses() {
return (
<div className="relative bg-primary">
<p className="font-link absolute lg:text-[40px] text-[30px] font-bold lg:top-[90px] top-[40px] -translate-y-1/2 left-[50vw] -translate-x-1/2 text-text underline">
Course Selection Guide
</p>

<div className="lg:pt-[200px] pt-[100px]">
</div>
</div>
);
}
Loading

0 comments on commit 69612eb

Please sign in to comment.