sgch2023 commited on
Commit
8be1880
·
verified ·
1 Parent(s): 7f44400

a ai ide codebuddy land page - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +507 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Codebudy Land Page
3
- emoji: 🐨
4
- colorFrom: gray
5
- colorTo: purple
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: codebudy-land-page
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: yellow
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,507 @@
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>CodeBuddy - AI-Powered IDE</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ /* Custom animations */
11
+ @keyframes float {
12
+ 0%, 100% { transform: translateY(0); }
13
+ 50% { transform: translateY(-20px); }
14
+ }
15
+ .floating {
16
+ animation: float 6s ease-in-out infinite;
17
+ }
18
+ .gradient-text {
19
+ background: linear-gradient(90deg, #3b82f6, #8b5cf6);
20
+ -webkit-background-clip: text;
21
+ background-clip: text;
22
+ color: transparent;
23
+ }
24
+ .code-editor {
25
+ background: #1e293b;
26
+ border-radius: 0.75rem;
27
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
28
+ }
29
+ .terminal {
30
+ background: #0f172a;
31
+ border-radius: 0.75rem;
32
+ }
33
+ .glow-effect {
34
+ box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
35
+ }
36
+ .feature-card:hover {
37
+ transform: translateY(-5px);
38
+ transition: all 0.3s ease;
39
+ }
40
+ </style>
41
+ </head>
42
+ <body class="bg-gray-900 text-gray-100 font-sans overflow-x-hidden">
43
+ <!-- Navigation -->
44
+ <nav class="container mx-auto px-6 py-4">
45
+ <div class="flex items-center justify-between">
46
+ <div class="flex items-center space-x-2">
47
+ <i class="fas fa-code text-blue-500 text-2xl"></i>
48
+ <span class="text-2xl font-bold">Code<span class="gradient-text">Buddy</span></span>
49
+ </div>
50
+ <div class="hidden md:flex space-x-8">
51
+ <a href="#features" class="hover:text-blue-400 transition">Features</a>
52
+ <a href="#demo" class="hover:text-blue-400 transition">Demo</a>
53
+ <a href="#pricing" class="hover:text-blue-400 transition">Pricing</a>
54
+ <a href="#testimonials" class="hover:text-blue-400 transition">Testimonials</a>
55
+ </div>
56
+ <div class="flex items-center space-x-4">
57
+ <button class="px-4 py-2 rounded-lg hover:bg-gray-800 transition">Login</button>
58
+ <button class="px-4 py-2 bg-blue-600 rounded-lg hover:bg-blue-700 transition glow-effect">Get Started</button>
59
+ <button class="md:hidden text-xl">
60
+ <i class="fas fa-bars"></i>
61
+ </button>
62
+ </div>
63
+ </div>
64
+ </nav>
65
+
66
+ <!-- Hero Section -->
67
+ <section class="container mx-auto px-6 py-16 md:py-24">
68
+ <div class="flex flex-col md:flex-row items-center">
69
+ <div class="md:w-1/2 mb-12 md:mb-0">
70
+ <h1 class="text-4xl md:text-6xl font-bold leading-tight mb-6">
71
+ Code Smarter with <span class="gradient-text">AI Assistance</span>
72
+ </h1>
73
+ <p class="text-xl text-gray-400 mb-8">
74
+ CodeBuddy is the next-generation IDE that understands your code and helps you write better, faster, and with fewer bugs.
75
+ </p>
76
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
77
+ <button class="px-8 py-3 bg-blue-600 rounded-lg hover:bg-blue-700 transition glow-effect text-lg font-semibold">
78
+ Start Coding Now
79
+ </button>
80
+ <button class="px-8 py-3 border border-blue-500 rounded-lg hover:bg-gray-800 transition text-lg font-semibold">
81
+ Watch Demo
82
+ </button>
83
+ </div>
84
+ <div class="mt-8 flex items-center space-x-4">
85
+ <div class="flex -space-x-2">
86
+ <img src="https://randomuser.me/api/portraits/women/12.jpg" class="w-10 h-10 rounded-full border-2 border-gray-800" alt="User">
87
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-10 h-10 rounded-full border-2 border-gray-800" alt="User">
88
+ <img src="https://randomuser.me/api/portraits/women/45.jpg" class="w-10 h-10 rounded-full border-2 border-gray-800" alt="User">
89
+ </div>
90
+ <div>
91
+ <p class="text-sm text-gray-400">Trusted by 10,000+ developers</p>
92
+ <div class="flex items-center">
93
+ <i class="fas fa-star text-yellow-400 mr-1"></i>
94
+ <span class="font-medium">4.9/5 (1,200 reviews)</span>
95
+ </div>
96
+ </div>
97
+ </div>
98
+ </div>
99
+ <div class="md:w-1/2 relative">
100
+ <div class="code-editor p-4 floating">
101
+ <div class="flex space-x-2 mb-4">
102
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
103
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
104
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
105
+ </div>
106
+ <pre class="text-green-400 font-mono text-sm overflow-x-auto">
107
+ <span class="text-blue-400">function</span> <span class="text-yellow-300">calculateSum</span>(nums) {
108
+ <span class="text-blue-400">let</span> total = <span class="text-purple-400">0</span>;
109
+ <span class="text-blue-400">for</span> (<span class="text-blue-400">let</span> num <span class="text-blue-400">of</span> nums) {
110
+ total += num;
111
+ }
112
+ <span class="text-blue-400">return</span> total;
113
+ }
114
+
115
+ <span class="text-gray-500">// CodeBuddy AI suggestion:</span>
116
+ <span class="text-gray-500">// Consider using reduce() for cleaner code</span>
117
+ <span class="text-blue-400">const</span> <span class="text-yellow-300">sum</span> = nums.<span class="text-yellow-300">reduce</span>((a, b) => a + b, <span class="text-purple-400">0</span>);
118
+ </pre>
119
+ </div>
120
+ <div class="terminal p-4 mt-6 w-3/4 ml-auto">
121
+ <div class="flex items-center mb-2">
122
+ <i class="fas fa-terminal text-green-400 mr-2"></i>
123
+ <span class="text-sm font-mono">Terminal</span>
124
+ </div>
125
+ <div class="font-mono text-sm">
126
+ <p class="text-green-400">$ npm run dev</p>
127
+ <p class="text-gray-300">Compiling...</p>
128
+ <p class="text-green-400">Compiled successfully in 1.2s</p>
129
+ <p class="text-blue-400">No issues found by CodeBuddy AI</p>
130
+ </div>
131
+ </div>
132
+ </div>
133
+ </div>
134
+ </section>
135
+
136
+ <!-- Features Section -->
137
+ <section id="features" class="bg-gray-800 py-16">
138
+ <div class="container mx-auto px-6">
139
+ <div class="text-center mb-16">
140
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Powerful Features</h2>
141
+ <p class="text-xl text-gray-400 max-w-2xl mx-auto">
142
+ Everything you need to supercharge your development workflow
143
+ </p>
144
+ </div>
145
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
146
+ <div class="feature-card bg-gray-900 p-8 rounded-xl hover:shadow-lg transition">
147
+ <div class="w-14 h-14 bg-blue-900 rounded-lg flex items-center justify-center mb-6">
148
+ <i class="fas fa-robot text-blue-400 text-2xl"></i>
149
+ </div>
150
+ <h3 class="text-xl font-bold mb-3">AI Code Completion</h3>
151
+ <p class="text-gray-400">
152
+ Get intelligent code suggestions as you type, powered by our advanced AI models trained on millions of repositories.
153
+ </p>
154
+ </div>
155
+ <div class="feature-card bg-gray-900 p-8 rounded-xl hover:shadow-lg transition">
156
+ <div class="w-14 h-14 bg-purple-900 rounded-lg flex items-center justify-center mb-6">
157
+ <i class="fas fa-bug text-purple-400 text-2xl"></i>
158
+ </div>
159
+ <h3 class="text-xl font-bold mb-3">Real-time Error Detection</h3>
160
+ <p class="text-gray-400">
161
+ Catch bugs before they happen with our sophisticated static analysis that understands your code context.
162
+ </p>
163
+ </div>
164
+ <div class="feature-card bg-gray-900 p-8 rounded-xl hover:shadow-lg transition">
165
+ <div class="w-14 h-14 bg-green-900 rounded-lg flex items-center justify-center mb-6">
166
+ <i class="fas fa-comments text-green-400 text-2xl"></i>
167
+ </div>
168
+ <h3 class="text-xl font-bold mb-3">Natural Language to Code</h3>
169
+ <p class="text-gray-400">
170
+ Describe what you want in plain English and let CodeBuddy generate the code for you.
171
+ </p>
172
+ </div>
173
+ <div class="feature-card bg-gray-900 p-8 rounded-xl hover:shadow-lg transition">
174
+ <div class="w-14 h-14 bg-yellow-900 rounded-lg flex items-center justify-center mb-6">
175
+ <i class="fas fa-lightbulb text-yellow-400 text-2xl"></i>
176
+ </div>
177
+ <h3 class="text-xl font-bold mb-3">Code Optimization</h3>
178
+ <p class="text-gray-400">
179
+ Get suggestions for performance improvements, security fixes, and best practices specific to your codebase.
180
+ </p>
181
+ </div>
182
+ <div class="feature-card bg-gray-900 p-8 rounded-xl hover:shadow-lg transition">
183
+ <div class="w-14 h-14 bg-red-900 rounded-lg flex items-center justify-center mb-6">
184
+ <i class="fas fa-exchange-alt text-red-400 text-2xl"></i>
185
+ </div>
186
+ <h3 class="text-xl font-bold mb-3">Seamless Collaboration</h3>
187
+ <p class="text-gray-400">
188
+ Work together in real-time with built-in pair programming, code reviews, and team knowledge sharing.
189
+ </p>
190
+ </div>
191
+ <div class="feature-card bg-gray-900 p-8 rounded-xl hover:shadow-lg transition">
192
+ <div class="w-14 h-14 bg-indigo-900 rounded-lg flex items-center justify-center mb-6">
193
+ <i class="fas fa-cloud text-indigo-400 text-2xl"></i>
194
+ </div>
195
+ <h3 class="text-xl font-bold mb-3">Cloud-Based Workspace</h3>
196
+ <p class="text-gray-400">
197
+ Access your projects from anywhere with our fully configured cloud development environment.
198
+ </p>
199
+ </div>
200
+ </div>
201
+ </div>
202
+ </section>
203
+
204
+ <!-- Demo Section -->
205
+ <section id="demo" class="py-16">
206
+ <div class="container mx-auto px-6">
207
+ <div class="text-center mb-16">
208
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">See It In Action</h2>
209
+ <p class="text-xl text-gray-400 max-w-2xl mx-auto">
210
+ Watch how CodeBuddy transforms your coding experience
211
+ </p>
212
+ </div>
213
+ <div class="relative bg-gray-800 rounded-xl overflow-hidden" style="padding-bottom: 56.25%;">
214
+ <div class="absolute inset-0 flex items-center justify-center">
215
+ <div class="text-center">
216
+ <button class="w-20 h-20 bg-blue-600 rounded-full flex items-center justify-center hover:bg-blue-700 transition glow-effect">
217
+ <i class="fas fa-play text-2xl"></i>
218
+ </button>
219
+ <p class="mt-4 text-lg">Play Demo Video</p>
220
+ </div>
221
+ </div>
222
+ </div>
223
+ </div>
224
+ </section>
225
+
226
+ <!-- Pricing Section -->
227
+ <section id="pricing" class="bg-gray-800 py-16">
228
+ <div class="container mx-auto px-6">
229
+ <div class="text-center mb-16">
230
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Simple, Transparent Pricing</h2>
231
+ <p class="text-xl text-gray-400 max-w-2xl mx-auto">
232
+ Choose the plan that fits your needs
233
+ </p>
234
+ </div>
235
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
236
+ <div class="bg-gray-900 p-8 rounded-xl">
237
+ <h3 class="text-xl font-bold mb-2">Starter</h3>
238
+ <p class="text-gray-400 mb-6">Perfect for individual developers</p>
239
+ <div class="mb-6">
240
+ <span class="text-4xl font-bold">$9</span>
241
+ <span class="text-gray-400">/month</span>
242
+ </div>
243
+ <ul class="space-y-3 mb-8">
244
+ <li class="flex items-center">
245
+ <i class="fas fa-check text-green-400 mr-2"></i>
246
+ <span>Basic AI suggestions</span>
247
+ </li>
248
+ <li class="flex items-center">
249
+ <i class="fas fa-check text-green-400 mr-2"></i>
250
+ <span>5 private projects</span>
251
+ </li>
252
+ <li class="flex items-center">
253
+ <i class="fas fa-check text-green-400 mr-2"></i>
254
+ <span>Community support</span>
255
+ </li>
256
+ <li class="flex items-center text-gray-500">
257
+ <i class="fas fa-times text-red-400 mr-2"></i>
258
+ <span>No team collaboration</span>
259
+ </li>
260
+ </ul>
261
+ <button class="w-full py-3 border border-blue-500 rounded-lg hover:bg-gray-800 transition">
262
+ Get Started
263
+ </button>
264
+ </div>
265
+ <div class="bg-gray-900 p-8 rounded-xl border-2 border-blue-500 relative">
266
+ <div class="absolute -top-3 left-1/2 transform -translate-x-1/2 bg-blue-500 text-white text-xs font-bold px-3 py-1 rounded-full">
267
+ MOST POPULAR
268
+ </div>
269
+ <h3 class="text-xl font-bold mb-2">Pro</h3>
270
+ <p class="text-gray-400 mb-6">For professional developers and small teams</p>
271
+ <div class="mb-6">
272
+ <span class="text-4xl font-bold">$29</span>
273
+ <span class="text-gray-400">/month</span>
274
+ </div>
275
+ <ul class="space-y-3 mb-8">
276
+ <li class="flex items-center">
277
+ <i class="fas fa-check text-green-400 mr-2"></i>
278
+ <span>Advanced AI suggestions</span>
279
+ </li>
280
+ <li class="flex items-center">
281
+ <i class="fas fa-check text-green-400 mr-2"></i>
282
+ <span>Unlimited private projects</span>
283
+ </li>
284
+ <li class="flex items-center">
285
+ <i class="fas fa-check text-green-400 mr-2"></i>
286
+ <span>Priority support</span>
287
+ </li>
288
+ <li class="flex items-center">
289
+ <i class="fas fa-check text-green-400 mr-2"></i>
290
+ <span>Team collaboration (up to 5)</span>
291
+ </li>
292
+ </ul>
293
+ <button class="w-full py-3 bg-blue-600 rounded-lg hover:bg-blue-700 transition glow-effect">
294
+ Get Started
295
+ </button>
296
+ </div>
297
+ <div class="bg-gray-900 p-8 rounded-xl">
298
+ <h3 class="text-xl font-bold mb-2">Enterprise</h3>
299
+ <p class="text-gray-400 mb-6">For large teams and organizations</p>
300
+ <div class="mb-6">
301
+ <span class="text-4xl font-bold">$99</span>
302
+ <span class="text-gray-400">/month</span>
303
+ </div>
304
+ <ul class="space-y-3 mb-8">
305
+ <li class="flex items-center">
306
+ <i class="fas fa-check text-green-400 mr-2"></i>
307
+ <span>Premium AI suggestions</span>
308
+ </li>
309
+ <li class="flex items-center">
310
+ <i class="fas fa-check text-green-400 mr-2"></i>
311
+ <span>Unlimited everything</span>
312
+ </li>
313
+ <li class="flex items-center">
314
+ <i class="fas fa-check text-green-400 mr-2"></i>
315
+ <span>24/7 dedicated support</span>
316
+ </li>
317
+ <li class="flex items-center">
318
+ <i class="fas fa-check text-green-400 mr-2"></i>
319
+ <span>Advanced security & compliance</span>
320
+ </li>
321
+ </ul>
322
+ <button class="w-full py-3 border border-blue-500 rounded-lg hover:bg-gray-800 transition">
323
+ Contact Sales
324
+ </button>
325
+ </div>
326
+ </div>
327
+ </div>
328
+ </section>
329
+
330
+ <!-- Testimonials Section -->
331
+ <section id="testimonials" class="py-16">
332
+ <div class="container mx-auto px-6">
333
+ <div class="text-center mb-16">
334
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">What Developers Say</h2>
335
+ <p class="text-xl text-gray-400 max-w-2xl mx-auto">
336
+ Join thousands of developers who boosted their productivity
337
+ </p>
338
+ </div>
339
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
340
+ <div class="bg-gray-800 p-8 rounded-xl">
341
+ <div class="flex items-center mb-4">
342
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" class="w-12 h-12 rounded-full mr-4" alt="User">
343
+ <div>
344
+ <h4 class="font-bold">Sarah Johnson</h4>
345
+ <p class="text-gray-400 text-sm">Senior Developer @TechCorp</p>
346
+ </div>
347
+ </div>
348
+ <p class="text-gray-300 italic">
349
+ "CodeBuddy has cut my debugging time in half. The AI catches issues I would normally spend hours tracking down. It's like having a senior developer looking over my shoulder."
350
+ </p>
351
+ <div class="flex mt-4">
352
+ <i class="fas fa-star text-yellow-400"></i>
353
+ <i class="fas fa-star text-yellow-400"></i>
354
+ <i class="fas fa-star text-yellow-400"></i>
355
+ <i class="fas fa-star text-yellow-400"></i>
356
+ <i class="fas fa-star text-yellow-400"></i>
357
+ </div>
358
+ </div>
359
+ <div class="bg-gray-800 p-8 rounded-xl">
360
+ <div class="flex items-center mb-4">
361
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-12 h-12 rounded-full mr-4" alt="User">
362
+ <div>
363
+ <h4 class="font-bold">Michael Chen</h4>
364
+ <p class="text-gray-400 text-sm">CTO @StartupXYZ</p>
365
+ </div>
366
+ </div>
367
+ <p class="text-gray-300 italic">
368
+ "Our team's velocity increased by 40% after adopting CodeBuddy. The AI pair programming feature has been particularly valuable for onboarding junior developers."
369
+ </p>
370
+ <div class="flex mt-4">
371
+ <i class="fas fa-star text-yellow-400"></i>
372
+ <i class="fas fa-star text-yellow-400"></i>
373
+ <i class="fas fa-star text-yellow-400"></i>
374
+ <i class="fas fa-star text-yellow-400"></i>
375
+ <i class="fas fa-star text-yellow-400"></i>
376
+ </div>
377
+ </div>
378
+ <div class="bg-gray-800 p-8 rounded-xl">
379
+ <div class="flex items-center mb-4">
380
+ <img src="https://randomuser.me/api/portraits/women/68.jpg" class="w-12 h-12 rounded-full mr-4" alt="User">
381
+ <div>
382
+ <h4 class="font-bold">Emma Rodriguez</h4>
383
+ <p class="text-gray-400 text-sm">Freelance Developer</p>
384
+ </div>
385
+ </div>
386
+ <p class="text-gray-300 italic">
387
+ "As a solo developer, CodeBuddy feels like having a teammate. The AI suggestions often show me better ways to implement features I'm working on. Worth every penny."
388
+ </p>
389
+ <div class="flex mt-4">
390
+ <i class="fas fa-star text-yellow-400"></i>
391
+ <i class="fas fa-star text-yellow-400"></i>
392
+ <i class="fas fa-star text-yellow-400"></i>
393
+ <i class="fas fa-star text-yellow-400"></i>
394
+ <i class="fas fa-star-half-alt text-yellow-400"></i>
395
+ </div>
396
+ </div>
397
+ </div>
398
+ </div>
399
+ </section>
400
+
401
+ <!-- CTA Section -->
402
+ <section class="bg-gradient-to-r from-blue-900 to-purple-900 py-16">
403
+ <div class="container mx-auto px-6 text-center">
404
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Coding Experience?</h2>
405
+ <p class="text-xl text-blue-200 max-w-2xl mx-auto mb-8">
406
+ Join thousands of developers who are coding smarter with AI assistance
407
+ </p>
408
+ <button class="px-8 py-4 bg-white text-blue-900 rounded-lg hover:bg-gray-100 transition text-lg font-bold glow-effect">
409
+ Start Your Free Trial Now
410
+ </button>
411
+ </div>
412
+ </section>
413
+
414
+ <!-- Footer -->
415
+ <footer class="bg-gray-900 py-12">
416
+ <div class="container mx-auto px-6">
417
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
418
+ <div>
419
+ <div class="flex items-center space-x-2 mb-4">
420
+ <i class="fas fa-code text-blue-500 text-2xl"></i>
421
+ <span class="text-2xl font-bold">Code<span class="gradient-text">Buddy</span></span>
422
+ </div>
423
+ <p class="text-gray-400 mb-4">
424
+ The AI-powered IDE that helps you write better code faster.
425
+ </p>
426
+ <div class="flex space-x-4">
427
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition"><i class="fab fa-twitter"></i></a>
428
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition"><i class="fab fa-github"></i></a>
429
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition"><i class="fab fa-discord"></i></a>
430
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition"><i class="fab fa-youtube"></i></a>
431
+ </div>
432
+ </div>
433
+ <div>
434
+ <h4 class="text-lg font-bold mb-4">Product</h4>
435
+ <ul class="space-y-2">
436
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Features</a></li>
437
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Pricing</a></li>
438
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Documentation</a></li>
439
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Roadmap</a></li>
440
+ </ul>
441
+ </div>
442
+ <div>
443
+ <h4 class="text-lg font-bold mb-4">Company</h4>
444
+ <ul class="space-y-2">
445
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition">About</a></li>
446
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Blog</a></li>
447
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Careers</a></li>
448
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Contact</a></li>
449
+ </ul>
450
+ </div>
451
+ <div>
452
+ <h4 class="text-lg font-bold mb-4">Resources</h4>
453
+ <ul class="space-y-2">
454
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Community</a></li>
455
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Tutorials</a></li>
456
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Support</a></li>
457
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition">API Status</a></li>
458
+ </ul>
459
+ </div>
460
+ </div>
461
+ <div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
462
+ <p class="text-gray-400 mb-4 md:mb-0">
463
+ &copy; 2023 CodeBuddy. All rights reserved.
464
+ </p>
465
+ <div class="flex space-x-6">
466
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition">Terms</a>
467
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition">Privacy</a>
468
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition">Cookies</a>
469
+ </div>
470
+ </div>
471
+ </div>
472
+ </footer>
473
+
474
+ <script>
475
+ // Simple animation for feature cards on scroll
476
+ document.addEventListener('DOMContentLoaded', function() {
477
+ const featureCards = document.querySelectorAll('.feature-card');
478
+
479
+ const observer = new IntersectionObserver((entries) => {
480
+ entries.forEach(entry => {
481
+ if (entry.isIntersecting) {
482
+ entry.target.style.opacity = '1';
483
+ entry.target.style.transform = 'translateY(0)';
484
+ }
485
+ });
486
+ }, { threshold: 0.1 });
487
+
488
+ featureCards.forEach(card => {
489
+ card.style.opacity = '0';
490
+ card.style.transform = 'translateY(20px)';
491
+ card.style.transition = 'all 0.6s ease';
492
+ observer.observe(card);
493
+ });
494
+
495
+ // Smooth scrolling for navigation links
496
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
497
+ anchor.addEventListener('click', function (e) {
498
+ e.preventDefault();
499
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
500
+ behavior: 'smooth'
501
+ });
502
+ });
503
+ });
504
+ });
505
+ </script>
506
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=sgch2023/codebudy-land-page" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
507
+ </html>