-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmultiAI.html
More file actions
354 lines (311 loc) · 10.6 KB
/
multiAI.html
File metadata and controls
354 lines (311 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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Collaborative AI - Brain Co-Lab</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
min-height: 100vh;
background: #ffffff;
color: #000000;
overflow-x: hidden;
}
/* Header */
header {
position: fixed;
top: 0;
width: 100%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
z-index: 100;
padding: 1.5rem 2rem;
}
.header-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.5rem;
font-weight: 600;
color: #000000;
text-decoration: none;
transition: opacity 0.3s ease;
}
.logo:hover {
opacity: 0.7;
}
.nav-button {
padding: 10px 24px;
font-size: 0.95rem;
font-weight: 500;
color: #ffffff;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border: none;
border-radius: 25px;
cursor: pointer;
text-decoration: none;
transition: all 0.3s ease;
}
.nav-button:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}
/* Main Content */
main {
padding-top: 100px;
min-height: 100vh;
}
.hero-section {
padding: 4rem 2rem;
text-align: center;
max-width: 1200px;
margin: 0 auto;
}
h1 {
font-size: clamp(2.5rem, 6vw, 4rem);
font-weight: 700;
color: #000000;
letter-spacing: -0.02em;
margin-bottom: 1.5rem;
animation: fadeInUp 0.8s ease-out;
}
.subtitle {
font-size: clamp(1.1rem, 2vw, 1.4rem);
font-weight: 400;
color: rgba(0, 0, 0, 0.7);
line-height: 1.6;
max-width: 700px;
margin: 0 auto 3rem;
animation: fadeInUp 0.8s ease-out;
animation-delay: 0.1s;
animation-fill-mode: both;
}
/* AI Cards Grid */
.ai-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
padding: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.ai-card {
background: #ffffff;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 16px;
padding: 2rem;
transition: all 0.3s ease;
cursor: pointer;
animation: fadeInUp 0.8s ease-out;
animation-fill-mode: both;
}
.ai-card:nth-child(1) { animation-delay: 0.2s; }
.ai-card:nth-child(2) { animation-delay: 0.3s; }
.ai-card:nth-child(3) { animation-delay: 0.4s; }
.ai-card:nth-child(4) { animation-delay: 0.5s; }
.ai-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
border-color: rgba(102, 126, 234, 0.3);
}
.ai-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 12px;
margin-bottom: 1.5rem;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
color: white;
}
.ai-card h3 {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 0.8rem;
color: #000000;
}
.ai-card p {
font-size: 0.95rem;
color: rgba(0, 0, 0, 0.6);
line-height: 1.6;
}
.ai-status {
display: inline-block;
padding: 4px 12px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 500;
margin-top: 1rem;
}
.status-active {
background: rgba(34, 197, 94, 0.1);
color: #22c55e;
}
.status-coming {
background: rgba(251, 146, 60, 0.1);
color: #fb923c;
}
/* Features Section */
.features-section {
padding: 4rem 2rem;
background: linear-gradient(to bottom, #f9fafb, #ffffff);
}
.features-container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
.features-title {
font-size: 2.5rem;
font-weight: 600;
margin-bottom: 3rem;
color: #000000;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.feature-item {
padding: 1.5rem;
animation: fadeInUp 0.8s ease-out;
animation-fill-mode: both;
}
.feature-item:nth-child(1) { animation-delay: 0.6s; }
.feature-item:nth-child(2) { animation-delay: 0.7s; }
.feature-item:nth-child(3) { animation-delay: 0.8s; }
.feature-icon {
width: 50px;
height: 50px;
margin: 0 auto 1rem;
background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
}
.feature-item h4 {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: #000000;
}
.feature-item p {
font-size: 0.9rem;
color: rgba(0, 0, 0, 0.6);
line-height: 1.5;
}
@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
/* Responsive */
@media (max-width: 768px) {
.header-content {
padding: 0 1rem;
}
.hero-section {
padding: 2rem 1rem;
}
h1 {
font-size: 2rem;
}
.subtitle {
font-size: 1rem;
}
.ai-grid {
grid-template-columns: 1fr;
padding: 1rem;
}
}
</style>
</head>
<body>
<header>
<div class="header-content">
<a href="/" class="logo">Brain co-lab</a>
<a href="/" class="nav-button">Home</a>
</div>
</header>
<main>
<section class="hero-section">
<h1>Collaborative AI</h1>
<p class="subtitle">
Harness the power of multiple AI models working together.
Connect, collaborate, and create with the most advanced AI systems available.
</p>
</section>
<section class="ai-grid">
<div class="ai-card">
<div class="ai-icon">🤖</div>
<h3>GPT-4</h3>
<p>Advanced language model for complex reasoning, creative writing, and code generation.</p>
<span class="ai-status status-active">Active</span>
</div>
<div class="ai-card">
<div class="ai-icon">🎨</div>
<h3>DALL-E 3</h3>
<p>State-of-the-art image generation from text descriptions with stunning creativity.</p>
<span class="ai-status status-active">Active</span>
</div>
<div class="ai-card">
<div class="ai-icon">🧠</div>
<h3>Claude 3</h3>
<p>Anthropic's helpful, harmless, and honest AI assistant for thoughtful conversations.</p>
<span class="ai-status status-active">Active</span>
</div>
<div class="ai-card">
<div class="ai-icon">⚡</div>
<h3>Gemini</h3>
<p>Google's multimodal AI model for understanding text, images, and code simultaneously.</p>
<span class="ai-status status-coming">Coming Soon</span>
</div>
</section>
<section class="features-section">
<div class="features-container">
<h2 class="features-title">Why Collaborative AI?</h2>
<div class="features-grid">
<div class="feature-item">
<div class="feature-icon">🔄</div>
<h4>Seamless Integration</h4>
<p>Connect multiple AI models in one unified workspace</p>
</div>
<div class="feature-item">
<div class="feature-icon">💡</div>
<h4>Enhanced Creativity</h4>
<p>Combine strengths of different models for better results</p>
</div>
<div class="feature-item">
<div class="feature-icon">🚀</div>
<h4>Increased Productivity</h4>
<p>Accomplish complex tasks faster with AI collaboration</p>
</div>
</div>
</div>
</section>
</main>
</body>
</html>