-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
400 lines (362 loc) · 15.7 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home | WinGPT</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
::-webkit-scrollbar {
width: 0px;
background: transparent;
}
body {
overflow: -moz-hidden;
}
body {
user-select: none;
-webkit-user-select: none; /* Voor Safari */
-ms-user-select: none; /* Voor IE/Edge */
}
/* Voorkom dat afbeeldingen geselecteerd of aangeklikt kunnen worden */
img {
pointer-events: none;
}
* {
scrollbar-width: none;
-ms-overflow-style: none;
}
:root {
--bg-primary: #121212;
--bg-secondary: #1e1e1e;
--text-primary: #ffffff;
--text-secondary: #b0b0b0;
--accent-color: #fff;
--card-bg: #2a2a2a;
--card-border: #333333;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--bg-primary);
color: var(--text-primary);
line-height: 1.6;
height: 100vh;
display: flex;
}
.app-window {
display: flex;
flex: 1;
overflow: hidden;
}
.sidebar {
width: 200px;
background-color: var(--bg-secondary);
padding: 20px;
display: flex;
flex-direction: column;
border-right: 1px solid var(--card-border);
}
.logo {
font-size: 28px;
font-weight: bold;
color: var(--accent-color);
margin-bottom: 40px;
text-align: center;
}
.nav-item {
padding: 12px;
margin-bottom: 10px;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
.nav-item i {
margin-right: 8px;
}
.nav-item:hover {
background-color: rgba(255, 255, 255, 0.1);
transform: translateY(-2px);
}
.nav-item.active {
background-color: var(--accent-color);
color: var(--bg-primary);
box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}
.main-content {
flex: 1;
padding: 40px;
overflow-y: auto;
}
h1, h2 {
margin-bottom: 20px;
color: var(--accent-color);
font-weight: 300;
}
h1 {
font-size: 3em;
margin-bottom: 30px;
}
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-bottom: 40px;
}
a {
text-decoration: none;
}
.card {
background-color: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 15px;
padding: 25px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
text-align: center;
}
.card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
opacity: 0;
transition: opacity 0.3s ease;
}
.card:hover {
transform: translateY(-5px) scale(1.02);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.card:hover::before {
opacity: 1;
}
.card h3 {
color: var(--accent-color);
margin-bottom: 15px;
font-size: 1.4em;
}
.card p {
color: var(--text-secondary);
}
.feature-list {
list-style-type: none;
margin-bottom: 40px;
}
.feature-list li {
margin-bottom: 15px;
padding-left: 30px;
position: relative;
}
.feature-list li::before {
content: '➤';
position: absolute;
left: 0;
color: var(--accent-color);
}
#help-content, #bots-content, #about-content {
display: none;
}
#help-content h2 {
margin-top: 30px;
}
#help-content p {
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="app-window">
<aside class="sidebar">
<div class="logo">
<img src="http://yixgames.nl.eu.org/yixboost/p/wingpt/assets/images/logo-text.png" alt="WinGPT Logo" style="width: 100%; height: auto;">
</div>
<nav>
<div class="nav-item active" onclick="showContent('home')">
<i class="fas fa-home"></i> Home
</div>
<div class="nav-item" onclick="showContent('bots')">
<i class="fas fa-robot"></i> AI Bots
</div>
<div class="nav-item" onclick="showContent('help')">
<i class="fas fa-question-circle"></i> Help
</div>
<div class="nav-item" onclick="showContent('about')">
<i class="fas fa-info-circle"></i> About WinGPT
</div>
</nav>
</aside>
<main class="main-content">
<div id="home-content">
<h1>Welcome to WinGPT</h1>
<p>Your gateway to advanced AI assistants on Windows, AI at your Fingertips</p>
<br>
<div class="card-grid">
<div class="card">
<i class="fas fa-plug" style="font-size: 2em; color: var(--accent-color);"></i>
<h3>Multi-AI Integration</h3>
<p>Access Claude, Gemini, ChatGPT, You.com, and more from a single interface.</p>
</div>
<div class="card">
<i class="fas fa-cogs" style="font-size: 2em; color: var(--accent-color);"></i>
<h3>Seamless Experience</h3>
<p>Enjoy a native Windows app feel with the power of web technologies.</p>
</div>
<div class="card">
<i class="fas fa-user-cog" style="font-size: 2em; color: var(--accent-color);"></i>
<h3>Customization</h3>
<p>Tailor the app to your needs with various settings and preferences.</p>
</div>
</div>
<h2>Key Features</h2>
<ul class="feature-list">
<li>Intuitive chat interface for all AI models</li>
<li>Quick switching between different AI assistants</li>
<li>Conversation history and export options</li>
<li>Dark mode for comfortable long-term use</li>
<li>Regular updates with new features and AI models</li>
</ul>
</div>
<div id="bots-content">
<h1>AI Bots</h1>
<div class="card-grid">
<a href="https://claude.ai">
<div class="card">
<img src="https://yixboost.github.io/wingpt/assets/images/ai/claude.png" width="100%" alt="Claude AI">
<h3>Claude AI</h3>
<p>A conversational AI designed to assist with creative writing, answering questions, and more.</p>
</div>
</a>
<a href="https://chatgpt.com">
<div class="card">
<img src="https://yixboost.github.io/wingpt/assets/images/ai/chatgpt.png" width="100%" alt="ChatGPT">
<h3>ChatGPT</h3>
<p>The popular chatbot AI from OpenAI, great for answering queries and creating conversational experiences.</p>
</div>
</a>
<a href="https://you.com">
<div class="card">
<img src="https://yixboost.github.io/wingpt/assets/images/ai/you.png" width="100%" alt="You.com AI">
<h3>You.com AI</h3>
<p>A search engine integrated AI offering real-time web browsing and answers with speed and accuracy.</p>
</div>
</a>
<a href="https://blackbox.ai">
<div class="card">
<img src="https://yixboost.github.io/wingpt/assets/images/ai/blackbox.png" width="100%" alt="Blackbox AI">
<h3>Blackbox AI</h3>
<p>An AI-powered coding assistant that helps developers by generating code snippets and suggestions.</p>
</div>
</a>
<a href="https://gemini.google.com/app">
<div class="card">
<img src="https://yixboost.github.io/wingpt/assets/images/ai/gemini.png" width="100%" alt="Google Gemini">
<h3>Google Gemini</h3>
<p>Google Gemini is an advanced AI model from Google. It provides powerful answers and integrates text and images.</p>
</div>
</a>
<a href="https://www.perplexity.ai">
<div class="card">
<img src="https://yixboost.github.io/wingpt/assets/images/ai/perplexity.png" width="100%" alt="Perplexity AI">
<h3>Perplexity AI</h3>
<p>An AI-based search engine providing concise, accurate answers based on web knowledge.</p>
</div>
</a>
<a href="https://www.jasper.ai">
<div class="card">
<img src="https://yixboost.github.io/wingpt/assets/images/ai/jasper.png" width="100%" alt="Jasper AI">
<h3>Jasper AI</h3>
<p>A content creation AI tool, perfect for marketers and writers to generate high-quality content.</p>
</div>
</a>
<a href="https://www.deepl.com/write">
<div class="card">
<img src="https://yixboost.github.io/wingpt/assets/images/ai/deepl.png" width="100%" alt="DeepL Write">
<h3>DeepL Write</h3>
<p>An AI-powered writing assistant that helps you write clearly and concisely in multiple languages.</p>
</div>
</a>
<a href="https://www.quillbot.com">
<div class="card">
<img src="https://yixboost.github.io/wingpt/assets/images/ai/quillbot.png" width="100%" alt="QuillBot AI">
<h3>QuillBot AI</h3>
<p>A paraphrasing and summarization tool powered by AI to enhance and improve your writing.</p>
</div>
</a>
<a href="https://poe.com">
<div class="card">
<img src="https://yixboost.github.io/wingpt/assets/images/ai/poe.png" width="100%" alt="Poe AI">
<h3>Poe AI</h3>
<p>An AI platform from Quora allowing users to chat with multiple AI bots for various purposes.</p>
</div>
</a>
<a href="https://www.midjourney.com">
<div class="card">
<img src="https://yixboost.github.io/wingpt/assets/images/ai/midjourney.png" width="100%" alt="MidJourney AI">
<h3>MidJourney AI</h3>
<p>A powerful AI for generating stunning visual artwork based on textual prompts.</p>
</div>
</a>
<a href="https://www.copy.ai">
<div class="card">
<img src="https://yixboost.github.io/wingpt/assets/images/ai/copy.png" width="100%" alt="Copy.ai">
<h3>Copy.ai</h3>
<p>An AI tool designed to help marketers and businesses generate copy for ads, websites, and emails.</p>
</div>
</a>
<a href="https://writesonic.com">
<div class="card">
<img src="https://yixboost.github.io/wingpt/assets/images/ai/writesonic.png" width="100%" alt="Writesonic AI">
<h3>Writesonic AI</h3>
<p>An AI-powered writing assistant helping to create SEO-optimized content quickly and efficiently.</p>
</div>
</a>
</div>
</div>
<div id="help-content">
<h1>Help</h1>
<h2>Frequently Asked Questions</h2>
<p>1. How do I get started?</p>
<p>Simply navigate to the AI Bots section and select your preferred AI to begin.</p>
<p>2. Can I customize the settings?</p>
<p>Yes! You can customize various settings from the settings menu, including themes and language preferences.</p>
<p>3. How do I report an issue?</p>
<p>If you encounter any issues, please reach out to our support team.</p>
<br>
<button class='nav-item' href='mailto://[email protected]'>Send e-mail</button>
</div>
<div id="about-content">
<h1>About WinGPT</h1>
<p>WinGPT is a powerful tool designed to provide users with easy access to advanced AI assistants on Windows. Our goal is to enhance productivity and creativity through the use of AI technologies. Join us in exploring the endless possibilities!</p>
</div>
</main>
</div>
<script>
function showContent(contentId) {
const contents = document.querySelectorAll('.main-content > div');
contents.forEach(content => {
content.style.display = 'none';
});
document.getElementById(contentId + '-content').style.display = 'block';
const navItems = document.querySelectorAll('.nav-item');
navItems.forEach(item => {
item.classList.remove('active');
});
event.target.classList.add('active');
}
// Show the home content by default
showContent('home');
</script>
</body>
</html>