-
Notifications
You must be signed in to change notification settings - Fork 3
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
8169fa7
commit 4151349
Showing
4 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
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,28 @@ | ||
import BaseLayout from 'layouts/BaseLayout'; | ||
import styles from 'styles/Sponsors.module.scss'; | ||
|
||
export default function Sponsors() { | ||
const sponsorPacketURL = 'Sponsorship_24_25.pdf'; | ||
|
||
return ( | ||
<BaseLayout collapsedNavBar> | ||
<div className={styles.pageContent}> | ||
<div className={styles.sponsorPacketContainer}> | ||
<object | ||
data={sponsorPacketURL} | ||
type="application/pdf" | ||
className={styles.sponsorPacket} | ||
> | ||
<p> | ||
You don`'`t have a PDF viewer for this browser. | ||
You can{' '} | ||
<a href={sponsorPacketURL}> | ||
click here to download the sponsor packet. | ||
</a> | ||
</p> | ||
</object> | ||
</div> | ||
</div> | ||
</BaseLayout> | ||
); | ||
} |
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,12 @@ | ||
.sponsorPacketContainer { | ||
width: 100%; | ||
height: calc(100vh - 64px); | ||
padding: 20px; | ||
box-sizing: border-box; | ||
} | ||
|
||
.sponsorPacket { | ||
width: 100%; | ||
height: 100%; | ||
border: none; | ||
} |