NBelov commited on
Commit
e854be6
·
verified ·
1 Parent(s): c689e2c

создай сайт для it компании у которой разработан свой собственный помощник для программиста и внутренний искуственный интелект

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +393 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Codegenie Ai Wizards
3
- emoji: 👁
4
- colorFrom: yellow
5
- colorTo: indigo
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: CodeGenie AI Wizards 🧙‍♂️
3
+ colorFrom: gray
4
+ colorTo: yellow
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
index.html CHANGED
@@ -1,19 +1,394 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>CodeGenie - Your AI Programming Companion</title>
7
+ <link rel="icon" type="image/x-icon" href="favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
12
+ <style>
13
+ @import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&family=Inter:wght@300;400;500;600;700&display=swap');
14
+
15
+ body {
16
+ font-family: 'Inter', sans-serif;
17
+ }
18
+
19
+ .code-font {
20
+ font-family: 'Fira Code', monospace;
21
+ }
22
+
23
+ .glow {
24
+ text-shadow: 0 0 10px rgba(79, 70, 229, 0.7);
25
+ }
26
+
27
+ .gradient-bg {
28
+ background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
29
+ }
30
+
31
+ .card-hover {
32
+ transition: all 0.3s ease;
33
+ }
34
+
35
+ .card-hover:hover {
36
+ transform: translateY(-5px);
37
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
38
+ }
39
+ </style>
40
+ </head>
41
+ <body class="bg-gray-900 text-white">
42
+ <div id="vanta-bg" class="fixed inset-0 z-0"></div>
43
+
44
+ <!-- Navigation -->
45
+ <nav class="relative z-10 bg-gray-900 bg-opacity-80 backdrop-blur-md border-b border-gray-800">
46
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
47
+ <div class="flex items-center justify-between h-16">
48
+ <div class="flex items-center">
49
+ <div class="flex-shrink-0">
50
+ <span class="text-2xl font-bold code-font gradient-text">
51
+ <span class="text-indigo-400">Code</span>
52
+ <span class="text-purple-400">Genie</span>
53
+ </span>
54
+ </div>
55
+ <div class="hidden md:block">
56
+ <div class="ml-10 flex items-baseline space-x-4">
57
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-white bg-indigo-600">Home</a>
58
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Features</a>
59
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Pricing</a>
60
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Docs</a>
61
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">About</a>
62
+ </div>
63
+ </div>
64
+ </div>
65
+ <div class="hidden md:block">
66
+ <div class="ml-4 flex items-center md:ml-6">
67
+ <button class="p-1 rounded-full text-gray-400 hover:text-white focus:outline-none">
68
+ <i data-feather="search"></i>
69
+ </button>
70
+ <button class="ml-3 px-4 py-2 rounded-md text-sm font-medium text-white bg-gradient-to-r from-purple-600 to-indigo-600 hover:from-purple-700 hover:to-indigo-700 transition">
71
+ Get Started
72
+ </button>
73
+ </div>
74
+ </div>
75
+ <div class="-mr-2 flex md:hidden">
76
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none">
77
+ <i data-feather="menu"></i>
78
+ </button>
79
+ </div>
80
+ </div>
81
+ </div>
82
+ </nav>
83
+
84
+ <!-- Hero Section -->
85
+ <section class="relative z-10 pt-24 pb-20 px-4 sm:px-6 lg:px-8">
86
+ <div class="max-w-7xl mx-auto">
87
+ <div class="text-center">
88
+ <h1 class="text-4xl md:text-6xl font-extrabold tracking-tight">
89
+ <span class="block text-white">Supercharge Your</span>
90
+ <span class="block text-transparent bg-clip-text gradient-bg">Programming Workflow</span>
91
+ </h1>
92
+ <p class="mt-6 max-w-lg mx-auto text-xl text-gray-300">
93
+ Meet your AI-powered coding assistant that understands context, suggests solutions, and automates repetitive tasks.
94
+ </p>
95
+ <div class="mt-10 flex justify-center space-x-4">
96
+ <a href="#" class="px-8 py-4 rounded-md text-lg font-medium text-white bg-gradient-to-r from-purple-600 to-indigo-600 hover:from-purple-700 hover:to-indigo-700 transition shadow-lg">
97
+ Try CodeGenie
98
+ </a>
99
+ <a href="#" class="px-8 py-4 rounded-md text-lg font-medium text-white bg-gray-800 hover:bg-gray-700 transition">
100
+ Watch Demo <i data-feather="play-circle" class="inline ml-2"></i>
101
+ </a>
102
+ </div>
103
+ </div>
104
+ <div class="mt-16">
105
+ <div class="relative rounded-xl overflow-hidden shadow-2xl">
106
+ <div class="absolute inset-0 bg-gradient-to-r from-purple-500 to-indigo-600 opacity-20"></div>
107
+ <div class="relative bg-gray-800 p-6">
108
+ <div class="flex items-center space-x-2 mb-4">
109
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
110
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
111
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
112
+ <div class="text-sm text-gray-400 ml-2 code-font">main.js</div>
113
+ </div>
114
+ <div class="code-font text-green-400">
115
+ <div>// CodeGenie understands your code context</div>
116
+ <div class="text-white mt-2">function calculateTotal(items) {</div>
117
+ <div class="text-gray-500 ml-4">// CodeGenie suggests: Use reduce for sum</div>
118
+ <div class="text-white ml-4">return items.<span class="text-yellow-300">reduce</span>((total, item) => {</div>
119
+ <div class="text-white ml-8">return total + item.price;</div>
120
+ <div class="text-white ml-4">}, 0);</div>
121
+ <div class="text-white">}</div>
122
+ <div class="mt-4 text-gray-500">// Press ⌘+I to ask CodeGenie to optimize this function</div>
123
+ </div>
124
+ </div>
125
+ </div>
126
+ </div>
127
+ </div>
128
+ </section>
129
+
130
+ <!-- Features Section -->
131
+ <section class="relative z-10 py-20 px-4 sm:px-6 lg:px-8 bg-gray-800 bg-opacity-50 backdrop-blur-md">
132
+ <div class="max-w-7xl mx-auto">
133
+ <div class="text-center">
134
+ <h2 class="text-3xl font-extrabold text-white sm:text-4xl">
135
+ Powerful Features for Developers
136
+ </h2>
137
+ <p class="mt-4 max-w-2xl mx-auto text-xl text-gray-300">
138
+ CodeGenie is more than just autocomplete - it's your AI pair programmer.
139
+ </p>
140
+ </div>
141
+ <div class="mt-16 grid gap-10 md:grid-cols-2 lg:grid-cols-3">
142
+ <div class="card-hover bg-gray-800 rounded-xl p-8 shadow-lg border border-gray-700">
143
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
144
+ <i data-feather="code"></i>
145
+ </div>
146
+ <div class="mt-6">
147
+ <h3 class="text-lg font-medium text-white">Context-Aware Suggestions</h3>
148
+ <p class="mt-2 text-gray-300">
149
+ Our AI understands your project structure and suggests relevant code snippets based on context.
150
+ </p>
151
+ </div>
152
+ </div>
153
+ <div class="card-hover bg-gray-800 rounded-xl p-8 shadow-lg border border-gray-700">
154
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-500 text-white">
155
+ <i data-feather="cpu"></i>
156
+ </div>
157
+ <div class="mt-6">
158
+ <h3 class="text-lg font-medium text-white">Smart Debugging</h3>
159
+ <p class="mt-2 text-gray-300">
160
+ Get AI-powered explanations for errors and potential fixes before you even search Stack Overflow.
161
+ </p>
162
+ </div>
163
+ </div>
164
+ <div class="card-hover bg-gray-800 rounded-xl p-8 shadow-lg border border-gray-700">
165
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-pink-500 text-white">
166
+ <i data-feather="zap"></i>
167
+ </div>
168
+ <div class="mt-6">
169
+ <h3 class="text-lg font-medium text-white">Auto-Optimization</h3>
170
+ <p class="mt-2 text-gray-300">
171
+ Let CodeGenie analyze and refactor your code for better performance and readability.
172
+ </p>
173
+ </div>
174
+ </div>
175
+ <div class="card-hover bg-gray-800 rounded-xl p-8 shadow-lg border border-gray-700">
176
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
177
+ <i data-feather="book-open"></i>
178
+ </div>
179
+ <div class="mt-6">
180
+ <h3 class="text-lg font-medium text-white">Documentation Generation</h3>
181
+ <p class="mt-2 text-gray-300">
182
+ Automatically create comprehensive docs and comments that stay in sync with your code.
183
+ </p>
184
+ </div>
185
+ </div>
186
+ <div class="card-hover bg-gray-800 rounded-xl p-8 shadow-lg border border-gray-700">
187
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-green-500 text-white">
188
+ <i data-feather="git-branch"></i>
189
+ </div>
190
+ <div class="mt-6">
191
+ <h3 class="text-lg font-medium text-white">VCS Integration</h3>
192
+ <p class="mt-2 text-gray-300">
193
+ Understands your git history to provide relevant suggestions based on your team's patterns.
194
+ </p>
195
+ </div>
196
+ </div>
197
+ <div class="card-hover bg-gray-800 rounded-xl p-8 shadow-lg border border-gray-700">
198
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-yellow-500 text-white">
199
+ <i data-feather="shield"></i>
200
+ </div>
201
+ <div class="mt-6">
202
+ <h3 class="text-lg font-medium text-white">Security Checks</h3>
203
+ <p class="mt-2 text-gray-300">
204
+ Real-time security analysis to catch vulnerabilities before they make it to production.
205
+ </p>
206
+ </div>
207
+ </div>
208
+ </div>
209
+ </div>
210
+ </section>
211
+
212
+ <!-- AI Assistant Demo -->
213
+ <section class="relative z-10 py-20 px-4 sm:px-6 lg:px-8">
214
+ <div class="max-w-7xl mx-auto">
215
+ <div class="lg:grid lg:grid-cols-12 lg:gap-8">
216
+ <div class="lg:col-span-5">
217
+ <h2 class="text-3xl font-extrabold text-white">
218
+ Meet Your AI Pair Programmer
219
+ </h2>
220
+ <p class="mt-4 text-lg text-gray-300">
221
+ CodeGenie understands natural language queries about your codebase. Ask questions in plain English and get precise answers.
222
+ </p>
223
+ <div class="mt-8">
224
+ <div class="flex items-start">
225
+ <div class="flex-shrink-0">
226
+ <div class="flex items-center justify-center h-10 w-10 rounded-full bg-indigo-500 text-white">
227
+ <i data-feather="user"></i>
228
+ </div>
229
+ </div>
230
+ <div class="ml-4">
231
+ <p class="text-sm text-white font-medium">Developer:</p>
232
+ <p class="text-sm text-gray-300 mt-1">"Why is this component re-rendering so often?"</p>
233
+ </div>
234
+ </div>
235
+ <div class="flex items-start mt-6">
236
+ <div class="flex-shrink-0">
237
+ <div class="flex items-center justify-center h-10 w-10 rounded-full bg-purple-500 text-white">
238
+ <i data-feather="cpu"></i>
239
+ </div>
240
+ </div>
241
+ <div class="ml-4">
242
+ <p class="text-sm text-white font-medium">CodeGenie:</p>
243
+ <p class="text-sm text-gray-300 mt-1">"The component is re-rendering because the parent passes a new object prop on each render. Consider memoizing the prop or using React.memo."</p>
244
+ </div>
245
+ </div>
246
+ </div>
247
+ </div>
248
+ <div class="mt-12 lg:mt-0 lg:col-span-7">
249
+ <div class="relative rounded-xl overflow-hidden shadow-2xl border border-gray-700">
250
+ <div class="absolute inset-0 bg-gradient-to-r from-purple-500 to-indigo-600 opacity-10"></div>
251
+ <div class="relative bg-gray-800 p-6">
252
+ <div class="flex items-center space-x-2 mb-4">
253
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
254
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
255
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
256
+ <div class="text-sm text-gray-400 ml-2 code-font">chat.js</div>
257
+ </div>
258
+ <div class="code-font">
259
+ <div class="text-purple-400">// Interactive chat with CodeGenie</div>
260
+ <div class="text-gray-500 mt-4">> <span class="text-green-400">How can I improve this API endpoint performance?</span></div>
261
+ <div class="text-gray-300 mt-2">1. <span class="text-yellow-300">Add caching</span> with Redis (save ~300ms per request)</div>
262
+ <div class="text-gray-300">2. <span class="text-yellow-300">Optimize database query</span> - add index on user_id</div>
263
+ <div class="text-gray-300">3. <span class="text-yellow-300">Implement pagination</span> to reduce payload size</div>
264
+ <div class="text-gray-500 mt-4">> <span class="text-green-400">Show me the Redis implementation</span></div>
265
+ <div class="text-gray-300 mt-2"><span class="text-blue-400">const</span> redis = <span class="text-blue-400">require</span>('redis');</div>
266
+ <div class="text-gray-300"><span class="text-blue-400">const</span> client = redis.createClient();</div>
267
+ <div class="text-gray-300 mt-2"><span class="text-blue-400">async function</span> <span class="text-yellow-300">getCachedData</span>(key) {</div>
268
+ <div class="text-gray-300 ml-4"><span class="text-blue-400">return</span> <span class="text-blue-400">new</span> <span class="text-blue-400">Promise</span>...</div>
269
+ </div>
270
+ </div>
271
+ </div>
272
+ </div>
273
+ </div>
274
+ </div>
275
+ </section>
276
+
277
+ <!-- CTA Section -->
278
+ <section class="relative z-10 py-20 px-4 sm:px-6 lg:px-8 bg-gradient-to-r from-indigo-900 to-purple-900">
279
+ <div class="max-w-7xl mx-auto text-center">
280
+ <h2 class="text-3xl font-extrabold text-white sm:text-4xl">
281
+ Ready to revolutionize your coding workflow?
282
+ </h2>
283
+ <p class="mt-6 max-w-2xl mx-auto text-xl text-indigo-100">
284
+ Join thousands of developers who ship better code faster with CodeGenie.
285
+ </p>
286
+ <div class="mt-10 flex justify-center">
287
+ <a href="#" class="px-8 py-4 rounded-md text-lg font-medium text-white bg-white bg-opacity-10 hover:bg-opacity-20 border border-white border-opacity-20 transition shadow-lg backdrop-blur-md flex items-center">
288
+ Start Free Trial <i data-feather="arrow-right" class="ml-2"></i>
289
+ </a>
290
+ </div>
291
+ <div class="mt-8 flex justify-center space-x-6">
292
+ <div class="flex items-center text-indigo-200">
293
+ <i data-feather="star" class="text-yellow-400"></i>
294
+ <span class="ml-2">4.9/5 from 1,200+ devs</span>
295
+ </div>
296
+ <div class="flex items-center text-indigo-200">
297
+ <i data-feather="download" class="text-green-400"></i>
298
+ <span class="ml-2">50,000+ installs</span>
299
+ </div>
300
+ </div>
301
+ </div>
302
+ </section>
303
+
304
+ <!-- Footer -->
305
+ <footer class="relative z-10 bg-gray-900">
306
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
307
+ <div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-5 gap-8">
308
+ <div class="col-span-2">
309
+ <span class="text-2xl font-bold code-font">
310
+ <span class="text-indigo-400">Code</span>
311
+ <span class="text-purple-400">Genie</span>
312
+ </span>
313
+ <p class="mt-4 text-gray-400">
314
+ The AI pair programmer that helps you write better code faster.
315
+ </p>
316
+ <div class="mt-6 flex space-x-6">
317
+ <a href="#" class="text-gray-400 hover:text-white">
318
+ <i data-feather="github"></i>
319
+ </a>
320
+ <a href="#" class="text-gray-400 hover:text-white">
321
+ <i data-feather="twitter"></i>
322
+ </a>
323
+ <a href="#" class="text-gray-400 hover:text-white">
324
+ <i data-feather="linkedin"></i>
325
+ </a>
326
+ <a href="#" class="text-gray-400 hover:text-white">
327
+ <i data-feather="youtube"></i>
328
+ </a>
329
+ </div>
330
+ </div>
331
+ <div>
332
+ <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Product</h3>
333
+ <div class="mt-4 space-y-4">
334
+ <a href="#" class="text-base text-gray-400 hover:text-white">Features</a>
335
+ <a href="#" class="text-base text-gray-400 hover:text-white">Pricing</a>
336
+ <a href="#" class="text-base text-gray-400 hover:text-white">Integrations</a>
337
+ <a href="#" class="text-base text-gray-400 hover:text-white">Roadmap</a>
338
+ </div>
339
+ </div>
340
+ <div>
341
+ <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Company</h3>
342
+ <div class="mt-4 space-y-4">
343
+ <a href="#" class="text-base text-gray-400 hover:text-white">About</a>
344
+ <a href="#" class="text-base text-gray-400 hover:text-white">Blog</a>
345
+ <a href="#" class="text-base text-gray-400 hover:text-white">Careers</a>
346
+ <a href="#" class="text-base text-gray-400 hover:text-white">Contact</a>
347
+ </div>
348
+ </div>
349
+ <div>
350
+ <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Resources</h3>
351
+ <div class="mt-4 space-y-4">
352
+ <a href="#" class="text-base text-gray-400 hover:text-white">Documentation</a>
353
+ <a href="#" class="text-base text-gray-400 hover:text-white">Community</a>
354
+ <a href="#" class="text-base text-gray-400 hover:text-white">Support</a>
355
+ <a href="#" class="text-base text-gray-400 hover:text-white">API Status</a>
356
+ </div>
357
+ </div>
358
+ </div>
359
+ <div class="mt-12 border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between">
360
+ <p class="text-base text-gray-400">
361
+ &copy; 2023 CodeGenie AI. All rights reserved.
362
+ </p>
363
+ <div class="mt-4 md:mt-0 flex space-x-6">
364
+ <a href="#" class="text-gray-400 hover:text-white">Privacy</a>
365
+ <a href="#" class="text-gray-400 hover:text-white">Terms</a>
366
+ <a href="#" class="text-gray-400 hover:text-white">Cookies</a>
367
+ </div>
368
+ </div>
369
+ </div>
370
+ </footer>
371
+
372
+ <script>
373
+ // Initialize Vanta.js background
374
+ VANTA.NET({
375
+ el: "#vanta-bg",
376
+ mouseControls: true,
377
+ touchControls: true,
378
+ gyroControls: false,
379
+ minHeight: 200.00,
380
+ minWidth: 200.00,
381
+ scale: 1.00,
382
+ scaleMobile: 1.00,
383
+ color: 0x5b21b6,
384
+ backgroundColor: 0x111827,
385
+ points: 12.00,
386
+ maxDistance: 25.00,
387
+ spacing: 18.00
388
+ });
389
+
390
+ // Initialize feather icons
391
+ feather.replace();
392
+ </script>
393
+ </body>
394
  </html>