Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Date and Code Health #74

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion content/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ We're looking for creative, innovative, and team-oriented hackers with a set of
## When will applications close?

The PRIORITY application will close June 30th at 11:59 PM ET.
The FINAL application will close July 16th at 11:59 PM ET.
The FINAL application will close July 19th at 11:59 PM ET.

## Who can apply?

Expand Down
10 changes: 5 additions & 5 deletions src/components/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import pacmanLeft from '../images/about-pacman-left.svg';
import pacmanRight from '../images/about-pacman-right.svg';
import aboutDotsBottom from '../images/about-dots-bottom.svg';

const About = ({content}) => {
const About = () => {
return (
<div className="about-section">
<a className="anchor" id="About"/>
Expand Down Expand Up @@ -51,9 +51,9 @@ const About = ({content}) => {
ambassador for PennApps. What this entails is spreading the word about PennApps at your
local school, college or university. Campus ambassadors are an important part of the
PennApps community and receive custom swag and perks at and before the event.</p>
<span>Apply to be a Campus Ambassador </span>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSenVr3R12cKmBTLd8dxmAdtG35zk7GNbNhYwKPQ2ut7aZFKOg/viewform">
here!</a><span> Applications are due by Friday, June 23rd, at 11:59 PM ET.</span>
{/* <span>Apply to be a Campus Ambassador </span> */}
{/* <a href="https://docs.google.com/forms/d/e/1FAIpQLSenVr3R12cKmBTLd8dxmAdtG35zk7GNbNhYwKPQ2ut7aZFKOg/viewform">
here!</a><span> Applications are due by Friday, June 23rd, at 11:59 PM ET.</span> */}
</div>
<div className="about-paragraph" id="about-paragraph-diversity-fellows">
<div className="about-header" id="about-header-diversity-fellows">
Expand All @@ -66,7 +66,7 @@ const About = ({content}) => {
</p>
<span>Apply to become a Diversity Fellow </span>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSeWCWk6Ahr1Kdwq0Swat1d27r7MWPPsme2Us8p6s-6Nyx_s-A/viewform">
here!</a><span> Applications are due by Sunday, July 16th, at 11:59 PM ET.</span>
here!</a><span> Applications are due by Wednesday, July 19th, at 11:59 PM ET.</span>
</div>
<img id="about-dots-bottom" src={aboutDotsBottom}></img>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Apply.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react'
import ghosts from '../images/ghosts.svg'

const Apply = ({content, id}) => {
const Apply = ({id}) => {
return (
<div key={id} className="section">
<a className="anchor" id={id}/>
Expand Down
23 changes: 12 additions & 11 deletions src/components/Heading.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React from 'react'
import apply_button from '../images/apply_button.svg'
import apply_bg from '../images/apply_bg.svg'
import apply_bg_hover from '../images/apply_bg_hovered.svg'
import { COLOR_PALETTE } from '../constants'

/*
.dots{
Expand All @@ -16,31 +17,31 @@ function Heading() {

return (
<div className="heading-parent">
<div className="row bg-[#31398C]">
<div className="box bg-[#6D79FF] border-[#5562E9] border-r-[15px] border-b-[15px] w-screen md:h-[10em] h-[6.5em] rounded-tl-[3.5em]"></div>
<div className="box bg-[#5562E9] border-[#6D79FF] border-l-[15px] border-b-[15px] w-screen md:h-[10em] h-[6.5em] rounded-tr-[3.5em]"></div>
<div className={`row bg-[${COLOR_PALETTE.DARK_BLUE}]`}>
<div className={`box bg-[${COLOR_PALETTE.SLATE_BLUE}] border-[${COLOR_PALETTE.DEEP_BLUE}] border-r-[15px] border-b-[15px] w-screen md:h-[10em] h-[6.5em] rounded-tl-[3.5em]`}></div>
<div className={`box bg-[${COLOR_PALETTE.DEEP_BLUE}] border-[${COLOR_PALETTE.SLATE_BLUE}] border-l-[15px] border-b-[15px] w-screen md:h-[10em] h-[6.5em] rounded-tr-[3.5em]`}></div>
</div>
<div className="row">
<div className="box-mid bg-[#5562E9] border-[#6D79FF] border-r-[15px] border-y-[15px] "></div>
<div className={`box-mid bg-[${COLOR_PALETTE.DEEP_BLUE}] border-[${COLOR_PALETTE.SLATE_BLUE}] border-r-[15px] border-y-[15px]`}></div>
<div className="heading">
<div className="header-box">
<RowDot color={"#9773FF"}/>
<RowDot color={COLOR_PALETTE.INDIGO}/>
<h1>Game On! Applications are now open.</h1>
<RowDot color={"#9773FF"}/>
<RowDot color={COLOR_PALETTE.INDIGO}/>
</div>
</div>
<div className="box-mid bg-[#6D79FF] border-[#5562E9] border-l-[15px] border-y-[15px]"></div>
<div className={`box-mid bg-[${COLOR_PALETTE.SLATE_BLUE}] border-[${COLOR_PALETTE.DEEP_BLUE}] border-l-[15px] border-y-[15px]`}></div>
</div>
<div className="row">
<div className="box bg-[#6D79FF] border-[#5562E9] border-r-[15px] border-y-[15px]"></div>
<div className={`box bg-[${COLOR_PALETTE.SLATE_BLUE}] border-[${COLOR_PALETTE.DEEP_BLUE}] border-r-[15px] border-y-[15px]`}></div>
<div className="heading">
<div className="desc-box">
<RowDot color={"#00B7FF"}/>
<RowDot color={COLOR_PALETTE.SKY_BLUE}/>
<h2>Hosted at the nation's first university, PennApps is the original college hackathon. Come join us to learn something new, build an app, or start a company. Let’s continue to make history together.</h2>
<RowDot color={"#00B7FF"}/>
<RowDot color={COLOR_PALETTE.SKY_BLUE}/>
</div>
</div>
<div className="box bg-[#5562E9] border-[#6D79FF] border-l-[15px] border-y-[15px]"></div>
<div className={`box bg-[${COLOR_PALETTE.DEEP_BLUE}] border-[${COLOR_PALETTE.SLATE_BLUE}] border-l-[15px] border-y-[15px]`}></div>
</div>

<div className="image-row">
Expand Down
7 changes: 7 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export const COLOR_PALETTE = {
DARK_BLUE: "#31398C",
DEEP_BLUE: "#5562E9",
SLATE_BLUE: "#6D79FF",
INDIGO: "#9773FF",
SKY_BLUE: "#00B7FF",
}
193 changes: 93 additions & 100 deletions src/images/landing_bg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.