-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
331 lines (301 loc) Β· 10.6 KB
/
Copy pathindex.html
File metadata and controls
331 lines (301 loc) Β· 10.6 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SEO and Social Sharing Meta Tags -->
<meta name="description" content="A serverless digital question board for the classroom. InquiryDQB uses peer-to-peer connections for instant, private, and zero-overhead student engagement. No accounts or logins required.">
<meta name="keywords" content="digital question board, ngss, 7i6serverless classroom tool, peer-to-peer education, no-signup whiteboard, privacy-focused classroom app, student inquiry, low overhead edtech">
<!-- Canonical URL -->
<link rel="canonical" href="https://inquirydqb.io/">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://inquirydqb.io/">
<meta property="og:title" content="InquiryDQB | The Serverless Digital Board for Classrooms">
<meta property="og:description" content="Run a real-time digital question board with zero server overhead. InquiryDQB connects teachers and students directly for ultimate privacy and simplicity.">
<meta property="og:image" content="https://inquirydqb.io/inquirydqb-share-image.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://inquirydqb.io/">
<meta property="twitter:title" content="InquiryDQB | The Serverless Digital Board for Classrooms">
<meta property="twitter:description" content="Run a real-time digital question board with zero server overhead. InquiryDQB connects teachers and students directly for ultimate privacy and simplicity.">
<meta property="twitter:image" content="https://inquirydqb.io/inquirydqb-share-image.png">
<!-- Structured Data (Schema) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "InquiryDQB",
"applicationCategory": "EducationalApplication",
"operatingSystem": "Web",
"abstract": "A serverless, peer-to-peer digital question board for classroom inquiry. Enables real-time collaboration with no accounts, logins, or data stored on central servers, ensuring student privacy.",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Organization",
"name": "InquiryDQB"
}
}
</script>
<title>InquiryDQB | Welcome</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Patrick+Hand&family=Nunito:wght@400;600;700;800;900&display=swap" rel="stylesheet">
<style>
:root {
--accent: #6366f1;
--accent-dark: #4f46e5;
--bg: #f8fafc;
--card-bg: #ffffff;
--text: #1e293b;
--text-light: #64748b;
--font-ui: 'Nunito', sans-serif;
--shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
--shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: var(--font-ui);
background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
color: var(--text);
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
padding: 20px;
}
.container {
width: 100%;
max-width: 900px;
text-align: center;
padding: 40px 20px;
}
.hero-logo {
max-width: 240px;
margin-bottom: 20px;
animation: fadeInDown 0.5s ease-out;
}
.hero-title {
font-size: 3.5rem;
font-weight: 900;
color: var(--accent);
margin: 0;
letter-spacing: -1px;
animation: fadeInDown 0.5s ease-out;
}
.hero-subtitle {
font-size: 1.25rem;
color: var(--text-light);
margin: 10px 0 40px 0;
max-width: 600px;
margin-left: auto;
margin-right: auto;
animation: fadeInDown 0.5s 0.2s ease-out backwards;
}
.role-selector {
display: flex;
gap: 30px;
justify-content: center;
margin-bottom: 80px;
flex-wrap: wrap;
animation: fadeInUp 0.5s 0.4s ease-out backwards;
}
.role-card {
background: var(--card-bg);
border-radius: 24px;
padding: 40px;
width: 300px;
box-shadow: var(--shadow);
text-decoration: none;
color: var(--text);
transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
border: 2px solid transparent;
}
.role-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
border-color: var(--accent);
}
.role-icon {
font-size: 4rem;
line-height: 1;
margin-bottom: 16px;
}
.role-card h2 {
font-size: 1.75rem;
margin: 0 0 8px 0;
color: var(--text);
}
.role-card p {
color: var(--text-light);
margin: 0;
}
.section-header {
font-size: 2rem;
font-weight: 800;
margin-bottom: 20px;
color: #334155;
}
.features-section {
margin-bottom: 80px;
animation: fadeInUp 0.5s 0.5s ease-out backwards;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
text-align: left;
}
.feature-card {
background: rgba(255, 255, 255, 0.5);
border: 1px solid #e0e7ff;
padding: 24px;
border-radius: 20px;
}
.feature-icon {
font-size: 2.5rem;
margin-bottom: 12px;
}
.feature-card h3 {
font-size: 1.25rem;
margin: 0 0 8px 0;
color: var(--text);
}
.feature-card p {
color: var(--text-light);
margin: 0;
line-height: 1.6;
}
.video-placeholder {
background: #e2e8f0;
border-radius: 24px;
width: 100%;
aspect-ratio: 16 / 9;
margin: 0 auto 60px auto;
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow);
position: relative;
overflow: hidden;
cursor: pointer;
animation: fadeInUp 0.5s 0.6s ease-out backwards;
}
.video-placeholder::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(45deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
opacity: 0;
transition: opacity 0.3s;
}
.video-placeholder:hover::before {
opacity: 1;
}
.play-button {
width: 100px;
height: 100px;
background: rgba(255, 255, 255, 0.9);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
transition: transform 0.2s;
z-index: 2;
}
.video-placeholder:hover .play-button {
transform: scale(1.1);
}
.play-button svg {
width: 40px;
height: 40px;
fill: var(--accent);
margin-left: 5px;
}
footer {
margin-top: auto;
padding: 20px;
color: var(--text-light);
font-size: 0.9rem;
}
@media (max-width: 680px) {
.hero-title {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1rem;
}
.role-card {
width: 100%;
max-width: 320px;
}
.container {
padding: 20px 10px;
}
}
@keyframes fadeInDown {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body>
<div class="container">
<img src="./InquiryDQB.png" alt="Logo for InquiryDQB" class="hero-logo">
<h1 class="hero-title">A Digital Question Board That Respects Your Privacy</h1>
<p class="hero-subtitle">Engage your classroom with a real-time inquiry board that runs entirely in your browser. No accounts, no servers, zero overhead.</p>
<div class="role-selector">
<a href="./Teacher/" class="role-card">
<div class="role-icon">π©βπ«</div>
<h2>I'm a Teacher</h2>
<p>Launch a session, create activities, and guide student learning.</p>
</a>
<a href="./Student/" class="role-card">
<div class="role-icon">π§βπ</div>
<h2>I'm a Student</h2>
<p>Join your class, contribute ideas, and collaborate with peers.</p>
</a>
</div>
<!-- ADD THIS NEW SECTION -->
<div class="features-section">
<h2 class="section-header">Simple, Private, and Powerful</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">β‘</div>
<h3>Instant Setup</h3>
<p>No sign-ups, no software, no student accounts. Launch a session and connect your class in seconds.</p>
</div>
<div class="feature-card">
<div class="feature-icon">π‘οΈ</div>
<h3>Privacy First</h3>
<p>Built with peer-to-peer technology. No student data is ever collected or stored on a central server.</p>
</div>
<div class="feature-card">
<div class="feature-icon">βοΈ</div>
<h3>Zero Overhead</h3>
<p>Runs directly in the browser with no backend to manage. It's the simplest way to bring inquiry to your classroom.</p>
</div>
</div>
</div>
<h2 class="section-header">See It In Action</h2>
<div class="video-placeholder" onclick="alert('Demo video coming soon!')">
<div class="play-button">
<svg viewBox="0 0 24 24"><path d="M8,5.14V19.14L19,12.14L8,5.14Z" /></svg>
</div>
</div>
</div>
<footer>
<p>© 2024 InquiryDQB. All rights reserved.</p>
</footer>
</body>
</html>