Skip to content
This repository was archived by the owner on Oct 5, 2025. It is now read-only.

Homepage Info Section#35

Merged
sdmungov merged 4 commits intofeature/2_cimun-homepagefrom
dev/17_info-cards
Jul 3, 2021
Merged

Homepage Info Section#35
sdmungov merged 4 commits intofeature/2_cimun-homepagefrom
dev/17_info-cards

Conversation

@sdmungov
Copy link
Contributor

@sdmungov sdmungov commented Jul 1, 2021

added the first draft of the info section of the home page and is fairly responsive

@sdmungov sdmungov added the enhancement New feature or request label Jul 1, 2021
@sdmungov sdmungov added this to the CIMUN Homepage milestone Jul 1, 2021
@sdmungov sdmungov requested review from FB-Reda and he-james July 1, 2021 19:55
@vercel
Copy link

vercel bot commented Jul 1, 2021

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/model-un/cimun-web/6wr8LDiQuvdyLCHAhY624n8kaAMS
✅ Preview: https://cimun-web-git-dev-17info-cards-model-un.vercel.app

@sdmungov sdmungov marked this pull request as draft July 1, 2021 19:55
Comment on lines 8 to 69
const InfoColumnWrapper = styled(ComponentWrapper)`
display: flex;
flex: 1;
width: 94vw;
margin: 3.9375vw auto;
${breakpoints("margin", "", [{ 1000: "10px 0" }])};
justify-content: space-between;
flex-direction: row;
${breakpoints("flex-direction", "", [{ 1000: "column" }])};
`;
const CardWrapper = styled.div<{
bordered?: boolean;
flex?: string;
height?: string;
margins?: string;
pad?: string;
}>`
display: flex;
flex: ${(props) => (props.flex ? props.flex : "1")};
${breakpoints("flex", "", [{ 1400: "1" }])};
${breakpoints("width", "", [{ 1400: "100%" }])};
align-items: center;
flex-direction: row;
${breakpoints("flex-direction", "", [{ 1400: "column" }])};
justify-content: space-between;
${breakpoints("align-items", "", [{ 1400: "flex-end" }])};
margin: ${(props) => (props.margins ? props.margins : "1rem")};
padding: ${(props) => (props.pad ? props.pad : "1.5rem")};
${breakpoints("padding", "", [{ 1400: "1.5rem auto" }])};
${breakpoints("margin", "", [{ 1400: "1rem 0" }])};
`;
const CardContainer = styled.div<{
bordered?: boolean;
flex?: string;
height?: string;
color?: string;
margins?: string;
pad?: string;
}>`
display: flex;
flex: ${(props) => (props.flex ? props.flex : "1")};
${breakpoints("flex", "", [{ 1400: "1" }])};
${breakpoints("min-width", "", [{ 1400: "45vw" }])};
${breakpoints("width", "", [{ 1000: "94vw" }])};
height: ${(props) => (props.height ? props.height : "auto")};
align-items: center;
flex-direction: column;
justify-content: center;
background-color: ${(props) => (props.color ? props.color : "transparent")};
margin: ${(props) => (props.margins ? props.margins : "1rem")};
padding: ${(props) => (props.pad ? props.pad : "1.5rem")};
${breakpoints("padding", "", [{ 1400: "1.5rem auto" }])};
${breakpoints("margin", "", [{ 1400: "1rem 0" }])};
`;
const Title = styled(SubTitle)`
font-size: 4rem;
${breakpoints("font-size", "", [{ 1000: "2.5rem" }])};
width: 100px;
${breakpoints("width", "", [{ 1000: "100%" }])};
margin: 0;
`;

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would move these to its own file, maybe

Comment on lines 75 to 101
<Body size="1rem" line={1.4}>
For 18 years, CIMUN has been a premier conference for scholastic Model
United Nations programs. <br />
<br />
Beginning with our opening ceremonies, delegates are introduced to a
24/7, fully-integrated simulation, where they are challenged to work
across committees as they confront complex present-day and historical
issues. <br />
<br />
The CIMUN Philosophy believes that educational value is defined by
realism. In this regard, action taken in one committee affects the
proceedings in every other committee. Crises occur in real-time
throughout the conference, and CIMUN staff diligently work to create a
conference that is fast-paced, nuanced, and above all else,
educational. CIMUN recognizes that nations cannot always solve
problems together, and that the complexity of international affairs is
high. Delegates are rewarded for demonstrating comprehensive knowledge
of their nation's stance and role on the global stage, rather than for
passing empty resolutions or for compromising their nation's values.
<br />
<br />
As an independent conference, CIMUN is not affiliated with any
university. Rather, we are a diverse and talented team of students,
post-graduates, and professionals from backgrounds in academia,
finance, politics, business, technology and more to deliver a
high-caliber educational experience to our delegates.
</Body>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't really mind this, but I personally think large blocks of text should be mapped onto an object in another file for convenient editing

rel="noopener noreferrer"
>
Powered by{' '}
Powered by{" "}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hahaha linter

props.align ? props.align : 'left'};
`;

export const SubTitle = styled.h3<TextType>`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i can see that you are becoming a styled component god

@sdmungov sdmungov marked this pull request as ready for review July 2, 2021 06:11
* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width
@sdmungov sdmungov merged commit 076f7ac into feature/2_cimun-homepage Jul 3, 2021
he-james added a commit that referenced this pull request Jul 3, 2021
* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
he-james added a commit that referenced this pull request Jul 3, 2021
* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
he-james added a commit that referenced this pull request Jul 3, 2021
* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
sdmungov added a commit that referenced this pull request Aug 12, 2021
* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
sdmungov added a commit that referenced this pull request Aug 12, 2021
* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
he-james added a commit that referenced this pull request Sep 27, 2021
* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>
he-james added a commit that referenced this pull request Dec 1, 2021
* staff apps (#61)

* Release - School Registration (#66)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Update homepage

* Update footer and header

* Update school registration form

* Update school registration image

* Remove blank pages

* Add TODO

* Add global style to use pointer on hover with a elements

* Add error message when forms fail to load

* Scale and align Logo with flex

* Center logo for mobile

* Fix flexbox safari compatibility issue

* Fix nav button alignment issue

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>
he-james added a commit that referenced this pull request Dec 1, 2021
* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Feature/4 school registration (#65)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: James He <hejames98@gmail.com>

* Feature/jh nov general enhancements (#68)

* staff apps (#61)

* Release - School Registration (#66)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Update homepage

* Update footer and header

* Update school registration form

* Update school registration image

* Remove blank pages

* Add TODO

* Add global style to use pointer on hover with a elements

* Add error message when forms fail to load

* Scale and align Logo with flex

* Center logo for mobile

* Fix flexbox safari compatibility issue

* Fix nav button alignment issue

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Create SECURITY.md (#62)

* Create SECURITY.md

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>
he-james added a commit that referenced this pull request Dec 6, 2021
* nov21 release (#69)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Feature/4 school registration (#65)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: James He <hejames98@gmail.com>

* Feature/jh nov general enhancements (#68)

* staff apps (#61)

* Release - School Registration (#66)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Update homepage

* Update footer and header

* Update school registration form

* Update school registration image

* Remove blank pages

* Add TODO

* Add global style to use pointer on hover with a elements

* Add error message when forms fail to load

* Scale and align Logo with flex

* Center logo for mobile

* Fix flexbox safari compatibility issue

* Fix nav button alignment issue

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Create SECURITY.md (#62)

* Create SECURITY.md

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Replace redirect with submission recceived copy

* Allow inject custom submission type to form submitted message

* More CTAs on Homepage

* Fix ref to PDF

* Some whitespace improvements, I guess

* Update Announce.tsx

* Add and update scheduling information

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>
he-james added a commit that referenced this pull request Dec 6, 2021
* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Feature/4 school registration (#65)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: James He <hejames98@gmail.com>

* Feature/jh nov general enhancements (#68)

* staff apps (#61)

* Release - School Registration (#66)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Update homepage

* Update footer and header

* Update school registration form

* Update school registration image

* Remove blank pages

* Add TODO

* Add global style to use pointer on hover with a elements

* Add error message when forms fail to load

* Scale and align Logo with flex

* Center logo for mobile

* Fix flexbox safari compatibility issue

* Fix nav button alignment issue

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Create SECURITY.md (#62)

* Create SECURITY.md

* Replace redirect with submission recceived copy (#70)

* nov21 release (#69)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Feature/4 school registration (#65)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: James He <hejames98@gmail.com>

* Feature/jh nov general enhancements (#68)

* staff apps (#61)

* Release - School Registration (#66)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Update homepage

* Update footer and header

* Update school registration form

* Update school registration image

* Remove blank pages

* Add TODO

* Add global style to use pointer on hover with a elements

* Add error message when forms fail to load

* Scale and align Logo with flex

* Center logo for mobile

* Fix flexbox safari compatibility issue

* Fix nav button alignment issue

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Create SECURITY.md (#62)

* Create SECURITY.md

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Replace redirect with submission recceived copy

* Allow inject custom submission type to form submitted message

* More CTAs on Homepage

* Fix ref to PDF

* Some whitespace improvements, I guess

* Update Announce.tsx

* Add and update scheduling information

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>
@he-james he-james mentioned this pull request Dec 6, 2021
he-james added a commit that referenced this pull request Dec 6, 2021
* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Feature/4 school registration (#65)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: James He <hejames98@gmail.com>

* Feature/jh nov general enhancements (#68)

* staff apps (#61)

* Release - School Registration (#66)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Update homepage

* Update footer and header

* Update school registration form

* Update school registration image

* Remove blank pages

* Add TODO

* Add global style to use pointer on hover with a elements

* Add error message when forms fail to load

* Scale and align Logo with flex

* Center logo for mobile

* Fix flexbox safari compatibility issue

* Fix nav button alignment issue

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Create SECURITY.md (#62)

* Create SECURITY.md

* Replace redirect with submission recceived copy (#70)

* nov21 release (#69)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Feature/4 school registration (#65)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: James He <hejames98@gmail.com>

* Feature/jh nov general enhancements (#68)

* staff apps (#61)

* Release - School Registration (#66)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Update homepage

* Update footer and header

* Update school registration form

* Update school registration image

* Remove blank pages

* Add TODO

* Add global style to use pointer on hover with a elements

* Add error message when forms fail to load

* Scale and align Logo with flex

* Center logo for mobile

* Fix flexbox safari compatibility issue

* Fix nav button alignment issue

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Create SECURITY.md (#62)

* Create SECURITY.md

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Replace redirect with submission recceived copy

* Allow inject custom submission type to form submitted message

* More CTAs on Homepage

* Fix ref to PDF

* Some whitespace improvements, I guess

* Update Announce.tsx

* Add and update scheduling information

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>
he-james added a commit that referenced this pull request Jan 7, 2022
* Staging (#71)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Feature/4 school registration (#65)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: James He <hejames98@gmail.com>

* Feature/jh nov general enhancements (#68)

* staff apps (#61)

* Release - School Registration (#66)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Update homepage

* Update footer and header

* Update school registration form

* Update school registration image

* Remove blank pages

* Add TODO

* Add global style to use pointer on hover with a elements

* Add error message when forms fail to load

* Scale and align Logo with flex

* Center logo for mobile

* Fix flexbox safari compatibility issue

* Fix nav button alignment issue

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Create SECURITY.md (#62)

* Create SECURITY.md

* Replace redirect with submission recceived copy (#70)

* nov21 release (#69)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Feature/4 school registration (#65)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: James He <hejames98@gmail.com>

* Feature/jh nov general enhancements (#68)

* staff apps (#61)

* Release - School Registration (#66)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Update homepage

* Update footer and header

* Update school registration form

* Update school registration image

* Remove blank pages

* Add TODO

* Add global style to use pointer on hover with a elements

* Add error message when forms fail to load

* Scale and align Logo with flex

* Center logo for mobile

* Fix flexbox safari compatibility issue

* Fix nav button alignment issue

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Create SECURITY.md (#62)

* Create SECURITY.md

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Replace redirect with submission recceived copy

* Allow inject custom submission type to form submitted message

* More CTAs on Homepage

* Fix ref to PDF

* Some whitespace improvements, I guess

* Update Announce.tsx

* Add and update scheduling information

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Add committees page

* Update letter

* Update copy for virtual conference

* Fix some bugs

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>
he-james added a commit that referenced this pull request Jan 7, 2022
* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Feature/4 school registration (#65)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: James He <hejames98@gmail.com>

* Feature/jh nov general enhancements (#68)

* staff apps (#61)

* Release - School Registration (#66)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Update homepage

* Update footer and header

* Update school registration form

* Update school registration image

* Remove blank pages

* Add TODO

* Add global style to use pointer on hover with a elements

* Add error message when forms fail to load

* Scale and align Logo with flex

* Center logo for mobile

* Fix flexbox safari compatibility issue

* Fix nav button alignment issue

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Create SECURITY.md (#62)

* Create SECURITY.md

* Replace redirect with submission recceived copy (#70)

* nov21 release (#69)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Feature/4 school registration (#65)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: James He <hejames98@gmail.com>

* Feature/jh nov general enhancements (#68)

* staff apps (#61)

* Release - School Registration (#66)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Update homepage

* Update footer and header

* Update school registration form

* Update school registration image

* Remove blank pages

* Add TODO

* Add global style to use pointer on hover with a elements

* Add error message when forms fail to load

* Scale and align Logo with flex

* Center logo for mobile

* Fix flexbox safari compatibility issue

* Fix nav button alignment issue

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Create SECURITY.md (#62)

* Create SECURITY.md

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Replace redirect with submission recceived copy

* Allow inject custom submission type to form submitted message

* More CTAs on Homepage

* Fix ref to PDF

* Some whitespace improvements, I guess

* Update Announce.tsx

* Add and update scheduling information

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Staging (#71) (#72)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore
…
he-james added a commit that referenced this pull request Jan 14, 2022
* Staging (#71)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Feature/4 school registration (#65)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: James He <hejames98@gmail.com>

* Feature/jh nov general enhancements (#68)

* staff apps (#61)

* Release - School Registration (#66)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Update homepage

* Update footer and header

* Update school registration form

* Update school registration image

* Remove blank pages

* Add TODO

* Add global style to use pointer on hover with a elements

* Add error message when forms fail to load

* Scale and align Logo with flex

* Center logo for mobile

* Fix flexbox safari compatibility issue

* Fix nav button alignment issue

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Create SECURITY.md (#62)

* Create SECURITY.md

* Replace redirect with submission recceived copy (#70)

* nov21 release (#69)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Feature/4 school registration (#65)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: James He <hejames98@gmail.com>

* Feature/jh nov general enhancements (#68)

* staff apps (#61)

* Release - School Registration (#66)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* changes the dates to the correct dates on the homepage

* removed storybook-static

Co-authored-by: James He <hejames98@gmail.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Dev/55 staff app form (#59)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Feature/4 school registration (#63)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

* Feature/4 school registration (#64)

* staff apps (#61)

* added school registration form page and updated nav bar, mobile friendle nav bar to come soon

* school registration form

* Sort fields by index before rendering

* Add asterisk for required fields

* Remove console log

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* added v1.0 of the mobile friendly top nav bar

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Update homepage

* Update footer and header

* Update school registration form

* Update school registration image

* Remove blank pages

* Add TODO

* Add global style to use pointer on hover with a elements

* Add error message when forms fail to load

* Scale and align Logo with flex

* Center logo for mobile

* Fix flexbox safari compatibility issue

* Fix nav button alignment issue

Co-authored-by: Steven Mungovan <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Create SECURITY.md (#62)

* Create SECURITY.md

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Replace redirect with submission recceived copy

* Allow inject custom submission type to form submitted message

* More CTAs on Homepage

* Fix ref to PDF

* Some whitespace improvements, I guess

* Update Announce.tsx

* Add and update scheduling information

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>
Co-authored-by: sdmungov <stevenmun@yahoo.com>

* Release/virtual conference (#78)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Dev/2b vercel sponsorship (#29)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* #18 Refine Header

* #18 Good for now

* Header Nav Component (#32)

* created the header nav component with only logo and home for the first release, the rest of the links will come when those pages have content, also made landing pages for about and conference links, added a breakpoints file to help with media query styling with styled components

* made the requested change from review

* Add and update vercel assets

* Small negative space enhancements

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Optimize Footer Image and Header text

* update gitignore

* ope

* Homepage Info Section (#35)

* added the first draft of the info section of the home page and is fairly responsive

* added styling to info cards

* Dev/17 jh info cards (#36)

* Defeat Megatron (#34)

* Switch out hero svg for image

* Defeated megatron

* Incredibly unnecessary header styling

* Small style and copy changes

* Adjust per comments

* Adjust per comments

* Adjust mobile view and justify text

* Somehow enhanced the margins

* Add extra title breakpoint

* I love this breakpoint function - Update subtitle for mobile

* Adjust brightness of jumbotron in a scuffed manner

* Add breakpoint for SubTitle width

Co-authored-by: James He <hejames98@gmail.com>

* First Hotfix. Memories (#42)

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>
Co-authored-by: Franco Reda <francoreda95@gmail.com>

* Hotfix/dates change (#56)

* Staging (#43)

* Dev/2 vercel sponsorship (#20) (#25)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2b vercel sponsorship (#31)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Update readme

* Update readme

* Update readme

* Release/2021/sprint 1 (#39)

* Dev/2 vercel sponsorship (#20)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* Dev/1 jh deployment rebase (#27)

* Dev/2 vercel sponsorship (#20) (#25) (#26)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README

* Add divider for style points

* Update links and copy Deploy on Vercel README section

* Small README adjustment

* created the jumbotron component for the landing of the home page and put it in a components folder and imported it into pages/index, set up fonts and colors files and some early global styles but those will be changed over to styled components based off a decision after this code was written (#22)

* installed and set up some basic styled-components, converted parts of jumbotron component and main page ot use some styled components (#24)

* Use utm params for vercel redirects

* Readme changes

Co-authored-by: sdmungov <55511406+sdmungov@users.noreply.github.com>

* #18 Initialize New Footer Component
* Add FontAwesome
* Add new footer and associated storybook/styles
* Improved storybook setup

* Dev/2b vercel sponsorship (#30)

* Dev/2 vercel sponsorship (#20) (#21)

* Add LICENSE

* Update gitignore

* Update vercel footer

* Add Vercel banner to README
…
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants