-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (73 loc) · 3.84 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jsPsych Hackathons</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%);
}
.card-hover {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
</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 Hackathons</h1>
<p class="text-xl max-w-2xl mx-auto">Your Chance to Learn and Contribute to Open-Source</p>
</div>
</header>
<main class="container mx-auto px-4 py-12">
<section class="mb-12">
<h2 class="text-3xl font-semibold mb-8 text-green-700 text-center">Upcoming Hackathons</h2>
<div class="grid md:grid-cols-2 gap-8">
<a href="https://jspsych.github.io/hackathon/spring_2025.html" class="bg-orange-500 hover:bg-orange-600 text-black font-bold py-2 px-4 rounded-full inline-block">
<button class="bg-white border rounded-lg p-6 shadow-md card-hover">
<h3 class="text-2xl font-bold mb-4 text-green-700">2025 Spring Hackathon</h3>
<p class="mb-4"><strong>Dates:</strong> May 12-15, 2025</p>
<p class="mb-4">In-person event at Vassar College focusing on plugin development and collaborative learning.</p>
</button>
</a>
<a href="https://jspsych.github.io/hackathon/virtual_2025.html" class="bg-orange-500 hover:bg-orange-600 text-black font-bold py-2 px-4 rounded-full inline-block">
<button class="bg-white border rounded-lg p-6 shadow-md card-hover">
<h3 class="text-2xl font-bold mb-4 text-green-700">Virtual Hackathon</h3>
<p class="mb-4"><strong>Dates:</strong> TBD</p>
<p class="mb-4">Online collaborative event for global jsPsych developers and researchers.</p>
</button>
</a>
</div>
</section>
<section class="bg-green-50 py-12 px-6 rounded-lg text-center" id="newsletter">
<h2 class="text-3xl font-semibold mb-6 text-green-700">Stay Updated</h2>
<p class="mb-6 max-w-2xl mx-auto">Subscribe to our newsletter to receive the latest information about jsPsych hackathons, codebase updates, and new plugins.</p>
<div style="text-align: center" class="sender-form-field bg-green-50" data-sender-form-id="m5li9yz5ejr0wrwxrw5"></div>
<script>
(function (s, e, n, d, er) {
s['Sender'] = er;
s[er] = s[er] || function () {
(s[er].q = s[er].q || []).push(arguments)
}, s[er].l = 1 * new Date();
var a = e.createElement(n),
m = e.getElementsByTagName(n)[0];
a.async = 1;
a.src = d;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://cdn.sender.net/accounts_resources/universal.js', 'sender');
sender('06a78af0a32181')
</script>
</section>
</main>
<footer class="bg-gray-100 py-8 text-center">