Skip to content

Commit 8359b76

Browse files
authored
feat/scholarship (#104)
* feat: embed iframe * fix: lint
1 parent 9a4056c commit 8359b76

File tree

2 files changed

+78
-44
lines changed

2 files changed

+78
-44
lines changed

package-lock.json

Lines changed: 44 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pages/scholarship.jsx

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import Head from "next/head";
2+
import { PageLayout } from "../sections/hoc";
3+
4+
export default function Resources({ ...props }) {
5+
return (
6+
<div {...props}>
7+
<Head>
8+
<title>PuMP | Scholarship</title>
9+
<meta
10+
name="description"
11+
content="Learn more about our resources including University Admissions Server, blog, and opportunities"
12+
/>
13+
</Head>
14+
<PageLayout>
15+
<iframe
16+
id="JotFormIFrame-221947443957064"
17+
title="PuMP Foundation Scholarship"
18+
onLoad="window.parent.scrollTo(0,0)"
19+
allowTransparency="true"
20+
allowFullScreen="true"
21+
allow="geolocation; microphone; camera"
22+
src="https://form.jotform.com/221947443957064"
23+
frameBorder="0"
24+
style={{
25+
minWidth: "100%",
26+
height: "539px",
27+
border: "none",
28+
scrolling: "no",
29+
}}
30+
/>
31+
</PageLayout>
32+
</div>
33+
);
34+
}

0 commit comments

Comments
 (0)