-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspring_2025_v0.html
114 lines (105 loc) · 5.06 KB
/
spring_2025_v0.html
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jsPsych Hackathon 2025</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" rel="stylesheet">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
color: #333;
}
.header-gradient {
background: linear-gradient(135deg, #4CAF50 0%, #45A049 100%);
}
.section-bg {
background-color: #f4f4f4;
}
</style>
</head>
<body class="bg-white">
<header class="header-gradient text-white py-16 text-center">
<div class="container mx-auto px-4">
<h1 class="text-4xl md:text-5xl font-bold mb-4">jsPsych Hackathon 2025</h1>
<p class="text-xl max-w-2xl mx-auto">Join Us for an Innovative Open-Source Development Experience</p>
</div>
</header>
<main class="container mx-auto px-4 py-12">
<section class="mb-12">
<img src="/api/placeholder/1200/400" alt="Hackathon Banner" class="w-full h-64 object-cover rounded-lg mb-8">
<div class="grid md:grid-cols-2 gap-8">
<div>
<h2 class="text-3xl font-semibold mb-4 text-green-700">Event Details</h2>
<p class="mb-4"><strong>When:</strong> May 12-15, 2025</p>
<p><strong>Where:</strong> Vassar College's Heartwood Inn, Poughkeepsie, NY</p>
</div>
<div class="section-bg p-6 rounded-lg">
<h2 class="text-3xl font-semibold mb-4 text-green-700">Overview</h2>
<p>We're excited to announce our first-ever hackathon dedicated to extending the jsPsych ecosystem and advancing open-source scientific software!</p>
</div>
</div>
</section>
<section class="mb-12">
<div class="grid md:grid-cols-3 gap-8">
<div>
<h2 class="text-3xl font-semibold mb-4 text-green-700">Event Schedule</h2>
<ul class="list-disc pl-5">
<li>May 12: Participant Arrival</li>
<li>May 13: Hackathon Begins (Morning)</li>
<li>May 15: Hackathon Concludes (Lunch)</li>
</ul>
</div>
<div>
<h2 class="text-3xl font-semibold mb-4 text-green-700">What We Offer</h2>
<ul class="list-disc pl-5">
<li>Full Coverage: Lodging, meals, and travel expenses</li>
<li>Expert Guidance: Instruction from the jsPsych team</li>
<li>Collaborative Learning: Work in small teams</li>
</ul>
</div>
<div class="section-bg p-6 rounded-lg">
<h2 class="text-3xl font-semibold mb-4 text-green-700">Who Should Attend</h2>
<ul class="list-disc pl-5">
<li>Experienced jsPsych users</li>
<li>Researchers interested in open-source development</li>
<li>Those wanting to contribute to scientific software</li>
</ul>
</div>
</div>
</section>
<section class="bg-green-50 p-8 rounded-lg mb-12">
<h2 class="text-3xl font-semibold mb-4 text-green-700">Learning Objectives</h2>
<div class="grid md:grid-cols-2 gap-4">
<ul class="list-disc pl-5">
<li>Develop novel jsPsych plugins and extensions</li>
<li>Learn open-source contribution strategies</li>
</ul>
<ul class="list-disc pl-5">
<li>Receive direct feedback from jsPsych developers</li>
<li>Collaborate with like-minded researchers</li>
</ul>
</div>
</section>
<section class="text-center">
<h2 class="text-3xl font-semibold mb-6 text-green-700">How to Apply</h2>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSe8jG20UlSE3KmS2oH2249LF3-etDgasag2AXgfFLU0-wljhA/viewform?usp=sf_link"
class="bg-orange-500 hover:bg-orange-600 text-white font-bold py-3 px-6 rounded-full inline-block transition duration-300">
Indicate Your Interest
</a>
<p class="mt-4 text-gray-600">
Interested but have questions?
<a href="mailto:[email protected]" class="text-green-700 hover:underline">
Email us at [email protected]
</a>
</p>
</section>
</main>
<footer class="bg-gray-100 py-8 text-center">
<p class="text-gray-600">
© 2025 jsPsych. Upcoming Opportunities: Stay tuned for additional hackathon announcements!
</p>
</footer>
</body>
</html>