-
Notifications
You must be signed in to change notification settings - Fork 0
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 #6 from mvhacks/noam-sponsors
Prospectus + Blurb
- Loading branch information
Showing
5 changed files
with
73 additions
and
30 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
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,18 @@ | ||
import prospectusImage from "../images/prospectus.png"; | ||
export default function Prospectus() { | ||
return (<div> | ||
<div id="blurbSponsors"> | ||
<h1>Sponsor MVHacks 8.0!</h1> | ||
<p>MVHacks is now in its 8th year of inspiring high school students throughout the country to get together and build great projects. As a prestigious, in-person hackathon, our past events have consistently attracted over 200 unique and diverse attendees. With your support, we aim to engage over 250+ students for MVHacks.</p> | ||
<p>To discover more about sponsorship opportunities, please download our Sponsorship Prospectus below and reach out to us at | ||
<a id="email" href="mailto:[email protected]">[email protected]</a>.</p> | ||
<p>Join us, and let's make MVHacks 8.0 an unforgettable experience. We eagerly await the participation of your company!</p> | ||
<a id="downloadProspectus" href="about:blank">Download the Sponsorship Prospectus</a> | ||
</div> | ||
<img src={prospectusImage} | ||
alt="prospectus" | ||
id="prospectusImage" | ||
width="80%" | ||
height="auto"/> | ||
</div>) | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,63 @@ | ||
body { | ||
margin: 0; | ||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', | ||
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', | ||
sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
background-color: black; | ||
} | ||
margin: 0; | ||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', | ||
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', | ||
sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
background-color: black; | ||
} | ||
|
||
code { | ||
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', | ||
monospace; | ||
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', | ||
monospace; | ||
} | ||
|
||
#footer { | ||
text-align: center; | ||
text-align: center; | ||
} | ||
|
||
#alert { | ||
height: 39px; | ||
background-color: #81807F; | ||
font-size: 14.9; | ||
font-family: "Montserrat", sans-serif; | ||
padding-left: 30px; | ||
height: 39px; | ||
background-color: #81807F; | ||
font-size: 14.9; | ||
font-family: "Montserrat", sans-serif; | ||
padding-left: 30px; | ||
} | ||
|
||
#devpost { | ||
width: 250px; | ||
background-color: blueviolet; | ||
width: 250px; | ||
background-color: blueviolet; | ||
} | ||
|
||
#contactUs { | ||
width: 250px; | ||
background-color: blueviolet; | ||
width: 250px; | ||
background-color: blueviolet; | ||
} | ||
|
||
#arrow { | ||
margin-right: -10px; | ||
margin-left: 27px; | ||
margin-right: -10px; | ||
margin-left: 27px; | ||
} | ||
|
||
#blurbSponsors { | ||
color: white; | ||
padding-left: 40px; | ||
padding-right: 40px; | ||
padding-bottom: 25px; | ||
} | ||
|
||
#email { | ||
color: rgb(147, 147, 230) | ||
} | ||
|
||
#downloadProspectus { | ||
color: rgb(147, 147, 230) | ||
} | ||
|
||
#prospectusImage { | ||
padding-left: 40px; | ||
padding-right: 40px; | ||
padding-bottom: 20px; | ||
|
||
} |