-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from NUWildHacks/website-mlh-and-content-updates
Website MLH and content updates
- Loading branch information
Showing
16 changed files
with
177 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import "./EmailList.scss"; | ||
import React from "react"; | ||
|
||
interface ISplashScreenButton { | ||
id: string; | ||
children: React.ReactNode; | ||
onClick: () => any; | ||
} | ||
|
||
export const SplashScreenButton: React.FC<ISplashScreenButton> = ({ | ||
id, | ||
children, | ||
onClick, | ||
}) => { | ||
return ( | ||
<button className="splash__button" id={id} onClick={onClick}> | ||
{children} | ||
</button> | ||
); | ||
}; | ||
|
||
export default SplashScreenButton; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,27 +21,42 @@ export const Footer: React.FC<IFooter> = () => { | |
</div> | ||
<h2>WildHacks 2025</h2> | ||
</div> | ||
<div> | ||
<div className="footer__flexbox" id="icons__flexbox"> | ||
<a href="https://www.instagram.com/wildhacks/" rel="noreferrer"> | ||
<FontAwesomeIcon icon={faInstagram} size="2xl" /> | ||
</a> | ||
<a | ||
href="https://www.linkedin.com/company/wildhacks/" | ||
rel="noreferrer" | ||
> | ||
<FontAwesomeIcon icon={faLinkedin} size="2xl" /> | ||
</a> | ||
<a href="mailto:[email protected]"> | ||
<FontAwesomeIcon icon={faEnvelope} size="2xl" /> | ||
</a> | ||
</div> | ||
</div> | ||
|
||
<div className="footer__flexbox footer__school_image"> | ||
<a href="https://www.northwestern.edu"> | ||
<img src={nuLogo} alt="Northwestern University logo" /> | ||
</a> | ||
</div> | ||
|
||
<div className="footer__flexbox footer__code_of_conduct"> | ||
<a | ||
id="nu" | ||
href="https://www.northwestern.edu/communitystandards/student-handbook/student-handbook.pdf" | ||
> | ||
Northwestern University Code of Conduct | ||
</a> | ||
<a | ||
id="mlh" | ||
href="https://github.com/MLH/mlh-policies/blob/main/code-of-conduct.md" | ||
> | ||
Major League Hacking Code of Conduct | ||
</a> | ||
</div> | ||
|
||
<div className="footer__flexbox" id="icons__flexbox"> | ||
<a href="https://www.instagram.com/wildhacks/" rel="noreferrer"> | ||
<FontAwesomeIcon icon={faInstagram} size="2xl" /> | ||
</a> | ||
<a | ||
href="https://www.linkedin.com/company/wildhacks/" | ||
rel="noreferrer" | ||
> | ||
<FontAwesomeIcon icon={faLinkedin} size="2xl" /> | ||
</a> | ||
<a href="mailto:[email protected]"> | ||
<FontAwesomeIcon icon={faEnvelope} size="2xl" /> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
|
||
position: relative; | ||
|
||
padding: 1rem; | ||
padding: 4rem; | ||
|
||
@include breakpoints.sm { | ||
padding: 0; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.