-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiversity-fellows.js
More file actions
62 lines (59 loc) · 2.74 KB
/
Copy pathdiversity-fellows.js
File metadata and controls
62 lines (59 loc) · 2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import * as React from 'react'
import { FaChevronRight } from '@react-icons/all-files/fa/FaChevronRight'
import { FaChevronDown } from '@react-icons/all-files/fa/FaChevronDown'
import Navbar from '../components/Navbar'
import Footer from '../components/Footer'
import ApplicationsOpenSvg from '../images/applications-open.svg'
import ApplicationsClosedSvg from '../images/applications-closed.svg'
import '../styles/ambassadors.css'
export function Head() {
return (
<>
<title>Diversity Fellows - PennApps</title>
<link rel="stylesheet" href="https://use.typekit.net/tri7gwo.css" />
</>
)
}
export default function DiversityFellows() {
return (
<div>
<Navbar currPage="DIVERSITY FELLOWS" />
<div className="ambassador-section">
<div className="main-content">
<div className="application-info">
<div>
<h3>Become a PennApps Diversity Fellow</h3>
<p>
Do you identify as a first-generation, low-income, or historically underrepresented hacker? Can you bring unique perspectives and experiences to PennApps XXIV? Are you looking for financial support for traveling to and attending our hackathon? If you said ‘yes’ to any of these questions, apply to join our Diversity Fellows Program now! Scan the QR code below, or go to this link:
{' '}
<a href="https://tinyurl.com/pennapps-dfp-2023">https://tinyurl.com/pennapps-dfp-2023</a>
</p>
<p>
Hackers accepted into the PennApps Diversity Fellows Program will receive full or partial reimbursement for travel and finding a place to stay during PennApps XXIV. Diversity Fellows will also gain exclusive access to a series of skill-building workshops put together by PennApps organizers in the weeks leading up to the hackathon. Don’t miss your chance to earn these amazing perks!
</p>
</div>
<hr className="section-divider" />
<div>
<h3>Application Information</h3>
<div>
<h4>HOW TO APPLY</h4>
<div>
Use
{' '}
<a href="https://tinyurl.com/pennapps-dfp-2023">this form</a>
{' '}
to tell us more about you! We want to know how your background and experiences have given you a unique perspective, and how you would implement this perspective at PennApps XXIV.
<br />
<br />
Stay tuned for Diversity Fellow 2024!
</div>
</div>
</div>
</div>
<hr className="section-divider" />
</div>
</div>
<div><Footer /></div>
</div>
)
}