-
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.
- Loading branch information
1 parent
bee6835
commit 3edde4f
Showing
4 changed files
with
73 additions
and
28 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 |
---|---|---|
@@ -1,30 +1,72 @@ | ||
import prospectusImage from "../images/MVH8Prospectus.png"; | ||
import Typography from '@mui/joy/Typography'; | ||
import Typography from "@mui/joy/Typography"; | ||
import Box from "@mui/joy/Box"; | ||
|
||
export default function Prospectus() { | ||
return (<div> | ||
<div id="blurbSponsors"> | ||
<Typography level='h2' | ||
sx={{ | ||
color: '#ffffff', | ||
marginBottom: '2%', | ||
marginRight: '0.7%', | ||
marginLeft: '0.7%', | ||
textAlign: "center" | ||
}} | ||
> | ||
SPONSOR MVHACKS 8.0! | ||
</Typography> | ||
<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]" style={{color: '#c6add4'}}>[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="prospectusDownload" href={"MVH8SponsorshipProspectus.pdf"} download style={{color: '#c6add4'}}>Download the Sponsorship Prospectus</a> | ||
</div> | ||
<img src={prospectusImage} | ||
return ( | ||
<div> | ||
<div id="blurbSponsors"> | ||
<Typography | ||
level="h2" | ||
sx={{ | ||
color: "#ffffff", | ||
marginBottom: "2%", | ||
marginRight: "0.7%", | ||
marginLeft: "0.7%", | ||
textAlign: "center", | ||
}} | ||
> | ||
SPONSOR MVHACKS 8.0! | ||
</Typography> | ||
<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]" | ||
style={{ color: "#c6add4" }} | ||
> | ||
[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="prospectusDownload" | ||
href={"MVH8SponsorshipProspectus.pdf"} | ||
download | ||
style={{ color: "#c6add4" }} | ||
> | ||
Download the Sponsorship Prospectus | ||
</a> | ||
</div> | ||
<Box | ||
alignItems="center" | ||
textAlign="center" | ||
display="flex" | ||
justifyContent="center" | ||
width="100%" | ||
> | ||
<Box maxWidth="800px"> | ||
<img | ||
src={prospectusImage} | ||
alt="prospectus" | ||
id="prospectusImage" | ||
width="80%" | ||
height="auto"/> | ||
</div>) | ||
} | ||
height="auto" | ||
/> | ||
</Box> | ||
</Box> | ||
</div> | ||
); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.