Loddina commited on
Commit
4ee28ed
·
verified ·
1 Parent(s): d741cf2

Welcome to KickBuzz, powered by Comet's development rules. This format enables organized content creation for projects like AI-driven outlines, documentation, or dynamic responses. If you have specific data to process or generate (e.g., a topic, query, or template), provide it in the next 'content' section for expansion. - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +362 -18
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Kickbuzz 1
3
- emoji: 🌍
4
- colorFrom: blue
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: kickbuzz-1
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: blue
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,363 @@
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>KickBuzz | AI-Powered Content Creation</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
14
+ <style>
15
+ .hero-gradient {
16
+ background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
17
+ }
18
+ .feature-card:hover {
19
+ transform: translateY(-5px);
20
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
21
+ }
22
+ </style>
23
+ </head>
24
+ <body class="font-sans antialiased text-gray-800">
25
+ <!-- Animated Background -->
26
+ <div id="vanta-globe" class="fixed top-0 left-0 w-full h-full -z-10"></div>
27
+
28
+ <!-- Navigation -->
29
+ <nav class="relative z-50 bg-white/80 backdrop-blur-md shadow-sm">
30
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
31
+ <div class="flex justify-between h-16 items-center">
32
+ <div class="flex-shrink-0 flex items-center">
33
+ <i data-feather="zap" class="h-8 w-8 text-indigo-600"></i>
34
+ <span class="ml-2 text-xl font-bold text-gray-900">KickBuzz</span>
35
+ </div>
36
+ <div class="hidden md:block">
37
+ <div class="ml-10 flex items-baseline space-x-4">
38
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-indigo-700 bg-indigo-100">Home</a>
39
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-indigo-600">Features</a>
40
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-indigo-600">Templates</a>
41
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-indigo-600">Pricing</a>
42
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-indigo-600">Contact</a>
43
+ </div>
44
+ </div>
45
+ <div class="hidden md:block">
46
+ <a href="#" class="px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-indigo-600 hover:bg-indigo-700">
47
+ Get Started
48
+ </a>
49
+ </div>
50
+ <div class="-mr-2 flex md:hidden">
51
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500">
52
+ <i data-feather="menu" class="block h-6 w-6"></i>
53
+ </button>
54
+ </div>
55
+ </div>
56
+ </div>
57
+ </nav>
58
+
59
+ <!-- Hero Section -->
60
+ <div class="relative hero-gradient overflow-hidden">
61
+ <div class="max-w-7xl mx-auto">
62
+ <div class="relative z-10 pb-8 sm:pb-16 md:pb-20 lg:max-w-2xl lg:w-full lg:pb-28 xl:pb-32">
63
+ <div class="pt-10 sm:pt-16 lg:pt-8 lg:pb-14 lg:overflow-hidden">
64
+ <div class="mt-10 mx-auto max-w-7xl px-4 sm:mt-12 sm:px-6 md:mt-16 lg:mt-20 lg:px-8 xl:mt-28">
65
+ <div class="sm:text-center lg:text-left">
66
+ <h1 class="text-4xl tracking-tight font-extrabold text-white sm:text-5xl md:text-6xl" data-aos="fade-down">
67
+ <span class="block">AI-Powered</span>
68
+ <span class="block text-indigo-200">Content Creation</span>
69
+ </h1>
70
+ <p class="mt-3 text-base text-indigo-100 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0" data-aos="fade-down" data-aos-delay="100">
71
+ KickBuzz helps you generate high-quality content in seconds using advanced AI technology. Perfect for blogs, documentation, and dynamic responses.
72
+ </p>
73
+ <div class="mt-5 sm:mt-8 sm:flex sm:justify-center lg:justify-start" data-aos="fade-up" data-aos-delay="200">
74
+ <div class="rounded-md shadow">
75
+ <a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-gray-50 md:py-4 md:text-lg md:px-10">
76
+ Try Now
77
+ </a>
78
+ </div>
79
+ <div class="mt-3 sm:mt-0 sm:ml-3">
80
+ <a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-500 bg-opacity-60 hover:bg-opacity-70 md:py-4 md:text-lg md:px-10">
81
+ Learn More
82
+ </a>
83
+ </div>
84
+ </div>
85
+ </div>
86
+ </div>
87
+ </div>
88
+ </div>
89
+ </div>
90
+ </div>
91
+
92
+ <!-- Features Section -->
93
+ <div class="py-12 bg-white">
94
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
95
+ <div class="lg:text-center">
96
+ <h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase" data-aos="fade-up">Features</h2>
97
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl" data-aos="fade-up">
98
+ A better way to create content
99
+ </p>
100
+ <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto" data-aos="fade-up">
101
+ KickBuzz provides powerful tools to streamline your content creation process.
102
+ </p>
103
+ </div>
104
+
105
+ <div class="mt-10">
106
+ <div class="space-y-10 md:space-y-0 md:grid md:grid-cols-2 md:gap-x-8 md:gap-y-10">
107
+ <!-- Feature 1 -->
108
+ <div class="relative feature-card transition-all duration-300 ease-in-out p-6 rounded-lg border border-gray-200" data-aos="fade-up" data-aos-delay="100">
109
+ <div class="flex items-center">
110
+ <div class="flex-shrink-0 bg-indigo-500 rounded-md p-3">
111
+ <i data-feather="zap" class="h-6 w-6 text-white"></i>
112
+ </div>
113
+ <div class="ml-4">
114
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Instant Generation</h3>
115
+ </div>
116
+ </div>
117
+ <div class="mt-2 text-gray-500">
118
+ <p>Generate high-quality content in seconds with our advanced AI algorithms. Perfect for when you need quick results.</p>
119
+ </div>
120
+ </div>
121
+
122
+ <!-- Feature 2 -->
123
+ <div class="relative feature-card transition-all duration-300 ease-in-out p-6 rounded-lg border border-gray-200" data-aos="fade-up" data-aos-delay="200">
124
+ <div class="flex items-center">
125
+ <div class="flex-shrink-0 bg-indigo-500 rounded-md p-3">
126
+ <i data-feather="edit" class="h-6 w-6 text-white"></i>
127
+ </div>
128
+ <div class="ml-4">
129
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Custom Templates</h3>
130
+ </div>
131
+ </div>
132
+ <div class="mt-2 text-gray-500">
133
+ <p>Choose from a variety of templates tailored for different content types including blogs, documentation, and more.</p>
134
+ </div>
135
+ </div>
136
+
137
+ <!-- Feature 3 -->
138
+ <div class="relative feature-card transition-all duration-300 ease-in-out p-6 rounded-lg border border-gray-200" data-aos="fade-up" data-aos-delay="300">
139
+ <div class="flex items-center">
140
+ <div class="flex-shrink-0 bg-indigo-500 rounded-md p-3">
141
+ <i data-feather="sliders" class="h-6 w-6 text-white"></i>
142
+ </div>
143
+ <div class="ml-4">
144
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Fine-Tuned Control</h3>
145
+ </div>
146
+ </div>
147
+ <div class="mt-2 text-gray-500">
148
+ <p>Adjust tone, style, and length to perfectly match your brand voice and audience expectations.</p>
149
+ </div>
150
+ </div>
151
+
152
+ <!-- Feature 4 -->
153
+ <div class="relative feature-card transition-all duration-300 ease-in-out p-6 rounded-lg border border-gray-200" data-aos="fade-up" data-aos-delay="400">
154
+ <div class="flex items-center">
155
+ <div class="flex-shrink-0 bg-indigo-500 rounded-md p-3">
156
+ <i data-feather="share-2" class="h-6 w-6 text-white"></i>
157
+ </div>
158
+ <div class="ml-4">
159
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Easy Sharing</h3>
160
+ </div>
161
+ </div>
162
+ <div class="mt-2 text-gray-500">
163
+ <p>Export your content directly to various platforms or download in multiple formats including HTML, Markdown, and PDF.</p>
164
+ </div>
165
+ </div>
166
+ </div>
167
+ </div>
168
+ </div>
169
+ </div>
170
+
171
+ <!-- CTA Section -->
172
+ <div class="bg-indigo-700">
173
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between">
174
+ <h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl" data-aos="fade-right">
175
+ <span class="block">Ready to dive in?</span>
176
+ <span class="block text-indigo-200">Start your free trial today.</span>
177
+ </h2>
178
+ <div class="mt-8 flex lg:mt-0 lg:flex-shrink-0" data-aos="fade-left">
179
+ <div class="inline-flex rounded-md shadow">
180
+ <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-indigo-50">
181
+ Get started
182
+ </a>
183
+ </div>
184
+ <div class="ml-3 inline-flex rounded-md shadow">
185
+ <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-600 bg-opacity-60 hover:bg-opacity-70">
186
+ Learn more
187
+ </a>
188
+ </div>
189
+ </div>
190
+ </div>
191
+ </div>
192
+
193
+ <!-- Footer -->
194
+ <footer class="bg-gray-50">
195
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8">
196
+ <div class="xl:grid xl:grid-cols-3 xl:gap-8">
197
+ <div class="space-y-8 xl:col-span-1">
198
+ <div class="flex items-center">
199
+ <i data-feather="zap" class="h-8 w-8 text-indigo-600"></i>
200
+ <span class="ml-2 text-xl font-bold text-gray-900">KickBuzz</span>
201
+ </div>
202
+ <p class="text-gray-500 text-base">
203
+ AI-powered content creation platform that helps you generate high-quality content in seconds.
204
+ </p>
205
+ <div class="flex space-x-6">
206
+ <a href="#" class="text-gray-400 hover:text-gray-500">
207
+ <i data-feather="twitter" class="h-6 w-6"></i>
208
+ </a>
209
+ <a href="#" class="text-gray-400 hover:text-gray-500">
210
+ <i data-feather="facebook" class="h-6 w-6"></i>
211
+ </a>
212
+ <a href="#" class="text-gray-400 hover:text-gray-500">
213
+ <i data-feather="instagram" class="h-6 w-6"></i>
214
+ </a>
215
+ <a href="#" class="text-gray-400 hover:text-gray-500">
216
+ <i data-feather="linkedin" class="h-6 w-6"></i>
217
+ </a>
218
+ </div>
219
+ </div>
220
+ <div class="mt-12 grid grid-cols-2 gap-8 xl:mt-0 xl:col-span-2">
221
+ <div class="md:grid md:grid-cols-2 md:gap-8">
222
+ <div>
223
+ <h3 class="text-sm font-semibold text-gray-900 tracking-wider uppercase">
224
+ Solutions
225
+ </h3>
226
+ <ul class="mt-4 space-y-4">
227
+ <li>
228
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">
229
+ Blog Writing
230
+ </a>
231
+ </li>
232
+ <li>
233
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">
234
+ Documentation
235
+ </a>
236
+ </li>
237
+ <li>
238
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">
239
+ Marketing Copy
240
+ </a>
241
+ </li>
242
+ <li>
243
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">
244
+ Product Descriptions
245
+ </a>
246
+ </li>
247
+ </ul>
248
+ </div>
249
+ <div class="mt-12 md:mt-0">
250
+ <h3 class="text-sm font-semibold text-gray-900 tracking-wider uppercase">
251
+ Support
252
+ </h3>
253
+ <ul class="mt-4 space-y-4">
254
+ <li>
255
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">
256
+ Pricing
257
+ </a>
258
+ </li>
259
+ <li>
260
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">
261
+ Documentation
262
+ </a>
263
+ </li>
264
+ <li>
265
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">
266
+ Guides
267
+ </a>
268
+ </li>
269
+ <li>
270
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">
271
+ API Status
272
+ </a>
273
+ </li>
274
+ </ul>
275
+ </div>
276
+ </div>
277
+ <div class="md:grid md:grid-cols-2 md:gap-8">
278
+ <div>
279
+ <h3 class="text-sm font-semibold text-gray-900 tracking-wider uppercase">
280
+ Company
281
+ </h3>
282
+ <ul class="mt-4 space-y-4">
283
+ <li>
284
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">
285
+ About
286
+ </a>
287
+ </li>
288
+ <li>
289
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">
290
+ Blog
291
+ </a>
292
+ </li>
293
+ <li>
294
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">
295
+ Jobs
296
+ </a>
297
+ </li>
298
+ <li>
299
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">
300
+ Press
301
+ </a>
302
+ </li>
303
+ </ul>
304
+ </div>
305
+ <div class="mt-12 md:mt-0">
306
+ <h3 class="text-sm font-semibold text-gray-900 tracking-wider uppercase">
307
+ Legal
308
+ </h3>
309
+ <ul class="mt-4 space-y-4">
310
+ <li>
311
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">
312
+ Privacy
313
+ </a>
314
+ </li>
315
+ <li>
316
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">
317
+ Terms
318
+ </a>
319
+ </li>
320
+ <li>
321
+ <a href="#" class="text-base text-gray-500 hover:text-gray-900">
322
+ Cookie Policy
323
+ </a>
324
+ </li>
325
+ </ul>
326
+ </div>
327
+ </div>
328
+ </div>
329
+ </div>
330
+ <div class="mt-12 border-t border-gray-200 pt-8">
331
+ <p class="text-base text-gray-400 text-center">
332
+ &copy; 2023 KickBuzz. All rights reserved.
333
+ </p>
334
+ </div>
335
+ </div>
336
+ </footer>
337
+
338
+ <script>
339
+ // Initialize Vanta.js globe
340
+ VANTA.GLOBE({
341
+ el: "#vanta-globe",
342
+ mouseControls: true,
343
+ touchControls: true,
344
+ gyroControls: false,
345
+ minHeight: 200.00,
346
+ minWidth: 200.00,
347
+ scale: 1.00,
348
+ scaleMobile: 1.00,
349
+ color: 0x5b6cf6,
350
+ backgroundColor: 0xffffff,
351
+ size: 0.8
352
+ });
353
+
354
+ // Initialize AOS and Feather Icons
355
+ AOS.init({
356
+ duration: 800,
357
+ easing: 'ease-in-out',
358
+ once: true
359
+ });
360
+ feather.replace();
361
+ </script>
362
+ </body>
363
  </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Welcome to KickBuzz, powered by Comet's development rules. This format enables organized content creation for projects like AI-driven outlines, documentation, or dynamic responses. If you have specific data to process or generate (e.g., a topic, query, or template), provide it in the next 'content' section for expansion.