-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
418 lines (378 loc) Β· 19.5 KB
/
index.html
File metadata and controls
418 lines (378 loc) Β· 19.5 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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>VoxelInsight - AI-Powered Medical Imaging Analysis</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
/* ===== VoxelInsight Professional Landing Page ===== */
/* Reset and Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6; color: #1a1a1a; background: #ffffff; overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
/* Animation Classes */
.animate-fade-in { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s ease-out forwards; }
.animate-fade-in-delay { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s ease-out 0.2s forwards; }
.animate-fade-in-delay-2 { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s ease-out 0.4s forwards; }
.animate-logo { opacity: 0; transform: scale(0.9); animation: logoAppear 0.9s ease-out 0.4s forwards; }
.animate-card-1 { opacity: 0; transform: translateX(-50px) translateY(20px); animation: cardFloat 1s ease-out 0.8s forwards, float 4s ease-in-out 2s infinite; }
.animate-card-2 { opacity: 0; transform: translateX(50px) translateY(-20px); animation: cardFloat 1s ease-out 1s forwards, float 4s ease-in-out 2.2s infinite; }
.animate-card-3 { opacity: 0; transform: translateX(-30px) translateY(40px); animation: cardFloat 1s ease-out 1.2s forwards, float 4s ease-in-out 2.4s infinite; }
.animate-on-scroll { opacity: 0; transform: translateY(50px); transition: all 0.8s ease-out; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll-delay { opacity: 0; transform: translateY(50px); transition: all 0.8s ease-out 0.2s; }
.animate-on-scroll-delay.visible { opacity: 1; transform: translateY(0); }
/* Keyframe Animations */
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes logoAppear { to { opacity: 1; transform: scale(1); } }
@keyframes cardFloat { to { opacity: 1; transform: translateX(0) translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-15px); } }
/* Navigation */
.navbar {
position: fixed; top: 0; left: 0; right: 0; background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0, 0, 0, 0.1); z-index: 1000; transition: all 0.3s ease;
}
.nav-container {
max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-small { width: 32px; height: 32px; border-radius: 6px; object-fit: cover; }
.logo-text {
font-size: 1.5rem; font-weight: 700;
background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { text-decoration: none; color: #1a1a1a; font-weight: 500; transition: color 0.3s ease; }
.nav-links a:hover { color: #4f46e5; }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 4px; cursor: pointer; }
.nav-mobile-toggle span { width: 25px; height: 3px; background: #1a1a1a; transition: all 0.3s ease; }
/* Hero Section */
.hero { padding: 120px 0 80px; background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); position: relative; overflow: hidden; }
.hero::before {
content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
opacity: 0.5;
}
.hero-container {
max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-title { font-size: 3.2rem; font-weight: 800; line-height: 1.15; margin-bottom: 18px; color: #1a1a1a; }
.gradient-text {
background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle { font-size: 1.2rem; color: #64748b; margin-bottom: 8px; line-height: 1.6; }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; height: 400px; }
.hero-image { position: relative; width: 300px; height: 360px; display: flex; justify-content: center; align-items: center; }
.hero-logo { width: 140px; height: 140px; position: relative; z-index: 2; border-radius: 24px; object-fit: cover; box-shadow: 0 12px 30px rgba(79,70,229,0.25); }
.floating-card {
position: absolute; background: white; padding: 16px 20px; border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); display: flex; align-items: center; gap: 12px;
z-index: 3; min-width: 140px;
}
.card-1 { top: -2%; left: -18%; }
.card-2 { top: 40%; right: -45%; }
.card-3 { bottom: -12%; left: 8%; }
.card-icon { font-size: 1.5rem; }
.card-text { font-weight: 600; color: #1a1a1a; font-size: 14px; }
/* Sections */
.section-header { text-align: center; margin-bottom: 54px; }
.section-header h2 { font-size: 2.3rem; font-weight: 800; margin-bottom: 14px; color: #1a1a1a; }
.section-header p { font-size: 1.05rem; color: #64748b; max-width: 640px; margin: 0 auto; }
/* Features Section */
.features { padding: 70px 0; background: white; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.feature-card { background: white; padding: 28px; border-radius: 16px; border: 1px solid #e2e8f0; transition: all 0.3s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); border-color: #4f46e5; }
.feature-icon { font-size: 2.2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: #1a1a1a; }
.feature-card p { color: #64748b; margin-bottom: 14px; line-height: 1.6; }
.feature-list { list-style: none; }
.feature-list li { color: #64748b; margin-bottom: 6px; position: relative; padding-left: 18px; }
.feature-list li::before { content: 'β'; position: absolute; left: 0; color: #4f46e5; font-weight: 600; }
/* How It Works Section */
.how-it-works { padding: 70px 0; background: #f8fafc; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 36px; }
.step { text-align: center; padding: 28px; }
.step-number {
width: 56px; height: 56px; background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%); color: white; border-radius: 50%;
display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; margin: 0 auto 18px;
}
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: #1a1a1a; }
.step p { color: #64748b; line-height: 1.6; }
/* About Section */
.about { padding: 70px 0; background: white; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-text p { color: #64748b; margin-bottom: 16px; line-height: 1.7; font-size: 1.05rem; }
.about-stats { display: grid; gap: 20px; }
.about-stat { text-align: center; padding: 22px; background: #f8fafc; border-radius: 12px; transition: all 0.3s ease; }
.about-stat:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
.stat-icon { font-size: 1.8rem; margin-bottom: 10px; }
.about-stat h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: #1a1a1a; }
.about-stat p { color: #64748b; font-size: 0.92rem; }
/* CTA Section (text-only now) */
.cta-section {
padding: 70px 0; background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%); color: white; text-align: center;
}
.cta-content h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 10px; }
.cta-content p { font-size: 1.05rem; opacity: 0.95; max-width: 720px; margin: 0 auto; }
/* Footer */
.footer { background: #1a1a1a; color: white; padding: 56px 0 20px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px; margin-bottom: 36px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-logo span { font-size: 1.2rem; font-weight: 800; }
.footer-section h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 12px; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 8px; }
.footer-section ul li a { color: #94a3b8; text-decoration: none; transition: color 0.3s ease; }
.footer-section ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid #374151; padding-top: 18px; text-align: center; color: #94a3b8; }
/* Responsive Design */
@media (max-width: 900px) {
.hero-container { grid-template-columns: 1fr; text-align: center; gap: 36px; }
.hero-visual { height: 340px; }
.about-content { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
.nav-links { display: none; }
.nav-mobile-toggle { display: flex; }
.nav-links.open {
display: block; position: absolute; top: 70px; right: 20px; left: 20px; background: white; border: 1px solid #e5e7eb;
border-radius: 12px; padding: 16px; box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.nav-links.open a { display: block; margin: 8px 0; text-align: center; }
}
@media (max-width: 480px) {
.container { padding: 0 16px; }
.hero { padding: 100px 0 56px; }
.hero-title { font-size: 2.2rem; }
.section-header h2 { font-size: 1.9rem; }
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<div class="nav-logo">
<img class="logo-small" src="static/VoxelInsight.png" alt="VoxelInsight logo">
<span class="logo-text">VoxelInsight</span>
</div>
<div class="nav-links" id="navLinks">
<a href="#features">Features</a>
<a href="#about">About</a>
</div>
<div class="nav-mobile-toggle" onclick="toggleMobileMenu()" aria-label="Toggle menu">
<span></span><span></span><span></span>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="hero-container">
<div class="hero-content">
<h1 class="hero-title animate-fade-in">
AI-Powered Medical Imaging Analysis
<span class="gradient-text">Made Simple</span>
</h1>
<p class="hero-subtitle animate-fade-in-delay">
Query & explore public DICOM and NIfTI datasets, segment anatomy with AI,
and extract radiomics β all through natural conversation.
</p>
</div>
<div class="hero-visual">
<div class="hero-image">
<img class="hero-logo animate-logo" src="static/VoxelInsight.png" alt="VoxelInsight logo">
<div class="floating-card card-1 animate-card-1">
<div class="card-icon">π</div><div class="card-text">Data Exploration</div>
</div>
<div class="floating-card card-2 animate-card-2">
<div class="card-icon">π€</div><div class="card-text">AI Segmentation</div>
</div>
<div class="floating-card card-3 animate-card-3">
<div class="card-icon">π</div><div class="card-text">Radiomics</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="features">
<div class="container">
<div class="section-header">
<h2 class="animate-on-scroll">Powerful Features for Medical Imaging</h2>
<p class="animate-on-scroll-delay">Everything you need to analyze medical imaging data with AI</p>
</div>
<div class="features-grid">
<div class="feature-card animate-on-scroll">
<div class="feature-icon">π</div>
<h3>Data Exploration</h3>
<p>Query IDC, MIDRC, and other public medical imaging datasets with natural language. Find exactly what you need, when you need it.</p>
<ul class="feature-list">
<li>Natural language queries</li>
<li>Multi-source dataset access</li>
<li>Advanced filtering options</li>
</ul>
</div>
<div class="feature-card animate-on-scroll">
<div class="feature-icon">π€</div>
<h3>AI Segmentation</h3>
<p>Automatically segment organs and lesions using state-of-the-art open-source segmentation models from TotalSegmentator and MONAI model zoo. Get results in minutes, not hours.</p>
<ul class="feature-list">
<li>Organ segmentation</li>
<li>Lesion detection</li>
<li>Batch processing</li>
</ul>
</div>
<div class="feature-card animate-on-scroll">
<div class="feature-icon">π</div>
<h3>Radiomics Extraction</h3>
<p>Extract quantitative features for analysis and research. Generate comprehensive reports with just a few clicks.</p>
<ul class="feature-list">
<li>Shape features</li>
<li>Texture analysis</li>
<li>Statistical reports</li>
</ul>
</div>
<div class="feature-card animate-on-scroll">
<div class="feature-icon">π¬</div>
<h3>Conversational AI</h3>
<p>Interact with your data through natural conversation. Ask questions, get insights, and explore your data intuitively.</p>
<ul class="feature-list">
<li>Natural language interface</li>
<li>Context-aware responses</li>
<li>Multi-modal support</li>
</ul>
</div>
</div>
</div>
</section>
<!-- How It Works Section -->
<section class="how-it-works">
<div class="container">
<div class="section-header">
<h2 class="animate-on-scroll">How It Works</h2>
<p class="animate-on-scroll-delay">Get started in three simple steps</p>
</div>
<div class="steps-grid">
<div class="step animate-on-scroll">
<div class="step-number">1</div>
<h3>Connect Your Data</h3>
<p>Upload your DICOM or NIfTI files, or connect to public datasets through our platform.</p>
</div>
<div class="step animate-on-scroll">
<div class="step-number">2</div>
<h3>Ask Questions</h3>
<p>Use natural language to query your data, request segmentation, or extract radiomics features.</p>
</div>
<div class="step animate-on-scroll">
<div class="step-number">3</div>
<h3>Get Results</h3>
<p>Receive instant insights, visualizations, and downloadable reports for your analysis.</p>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<div class="container">
<div class="section-header">
<h2 class="animate-on-scroll">About VoxelInsight</h2>
<p class="animate-on-scroll-delay">Empowering researchers and healthcare professionals with AI-driven medical imaging analysis</p>
</div>
<div class="about-content">
<div class="about-text animate-on-scroll">
<p>VoxelInsight is a cutting-edge platform that combines the power of artificial intelligence with medical imaging analysis. Our mission is to make advanced medical imaging tools accessible to researchers, radiologists, and healthcare professionals worldwide.</p>
<p>Built on state-of-the-art AI models and open-source medical imaging libraries, VoxelInsight provides an intuitive interface for exploring public datasets, performing automated segmentation, and extracting quantitative features for research and clinical applications.</p>
</div>
<div class="about-stats animate-on-scroll">
<div class="about-stat">
<div class="stat-icon">π₯</div>
<h4>Medical Focus</h4>
<p>Specialized for medical imaging workflows</p>
</div>
<div class="about-stat">
<div class="stat-icon">π¬</div>
<h4>Research Ready</h4>
<p>Built for academic and clinical research</p>
</div>
<div class="about-stat">
<div class="stat-icon">β‘</div>
<h4>Fast & Efficient</h4>
<p>Get results in minutes, not hours</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section (text-only) -->
<section class="cta-section">
<div class="container">
<div class="cta-content animate-on-scroll">
<h2>Ready to Transform Your Medical Imaging Analysis?</h2>
<p>Join researchers and healthcare professionals who are already using VoxelInsight to accelerate their work.</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<div class="footer-logo">
<img class="logo-small" src="static/VoxelInsight.png" alt="VoxelInsight logo">
<span>VoxelInsight</span>
</div>
<p>AI-powered medical imaging analysis for researchers and healthcare professionals.</p>
</div>
<div class="footer-section">
<h4>Product</h4>
<ul>
<li><a href="#features">Features</a></li>
<li><a href="#about">About</a></li>
<li><a href="#how">How it works</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Company</h4>
<ul>
<li><a href="#about">About</a></li>
<li><a href="mailto:hello@voxelinsight.ai">Contact</a></li>
<li><a href="#" onclick="alert('Privacy policy coming soon.'); return false;">Privacy</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Support</h4>
<ul>
<li><a href="#" onclick="alert('Docs coming soon.'); return false;">Documentation</a></li>
<li><a href="#" onclick="alert('Help center coming soon.'); return false;">Help Center</a></li>
<li><a href="#" onclick="alert('Status page coming soon.'); return false;">Status</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 VoxelInsight. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu
function toggleMobileMenu() {
const links = document.getElementById('navLinks');
links.classList.toggle('open');
}
// Scroll-triggered animations
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) entry.target.classList.add('visible');
});
}, { threshold: 0.15 });
document.querySelectorAll('.animate-on-scroll, .animate-on-scroll-delay').forEach(el => observer.observe(el));
</script>
</body>
</html>