Loddina commited on
Commit
3739684
·
verified ·
1 Parent(s): 10c740b

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +133 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Kickbuzz
3
- emoji: 🐨
4
- colorFrom: purple
5
- colorTo: gray
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
3
+ emoji: ⚛️
4
+ colorFrom: green
5
+ colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - QwenSite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,133 @@
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 - Powered by Comet</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
9
+ <style>
10
+ body {
11
+ font-family: 'Inter', sans-serif;
12
+ }
13
+ </style>
14
+ </head>
15
+ <body class="bg-white text-gray-800">
16
+
17
+ <!-- Navbar -->
18
+ <header class="bg-white shadow-md sticky top-0 z-50">
19
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
20
+ <div class="flex justify-between items-center py-4">
21
+ <div class="text-2xl font-bold text-indigo-600">KickBuzz</div>
22
+ <nav class="space-x-4 hidden md:flex">
23
+ <a href="#features" class="text-gray-600 hover:text-indigo-600">Features</a>
24
+ <a href="#about" class="text-gray-600 hover:text-indigo-600">About</a>
25
+ <a href="#contact" class="text-gray-600 hover:text-indigo-600">Contact</a>
26
+ </nav>
27
+ </div>
28
+ </div>
29
+ </header>
30
+
31
+ <!-- Hero Section -->
32
+ <section class="bg-gradient-to-r from-indigo-500 via-purple-500 to-pink-500 text-white py-24">
33
+ <div class="max-w-3xl mx-auto text-center px-6">
34
+ <h1 class="text-4xl sm:text-5xl font-extrabold mb-6 leading-tight">
35
+ Welcome to KickBuzz, Powered by Comet
36
+ </h1>
37
+ <p class="text-lg sm:text-xl mb-8">
38
+ Organized content creation for AI-driven outlines, documentation, and dynamic responses.
39
+ </p>
40
+ <a href="#content-section" class="inline-block bg-white text-indigo-600 font-semibold py-3 px-6 rounded-lg shadow hover:bg-gray-100 transition">
41
+ Get Started
42
+ </a>
43
+ </div>
44
+ </section>
45
+
46
+ <!-- Content Section -->
47
+ <section id="content-section" class="py-16 bg-gray-50">
48
+ <div class="max-w-6xl mx-auto px-6">
49
+ <h2 class="text-3xl font-bold text-center mb-12">Dynamic Content Area</h2>
50
+ <div id="dynamic-content" class="prose max-w-none">
51
+ <p class="text-center text-gray-600">Loading content...</p>
52
+ </div>
53
+ <div class="text-center mt-8">
54
+ <button onclick="loadSampleContent()" class="bg-indigo-600 text-white py-2 px-6 rounded hover:bg-indigo-700 transition">
55
+ Load Sample Content
56
+ </button>
57
+ </div>
58
+ </div>
59
+ </section>
60
+
61
+ <!-- Features -->
62
+ <section id="features" class="py-16 bg-white">
63
+ <div class="max-w-6xl mx-auto px-6">
64
+ <h2 class="text-3xl font-bold text-center mb-12">Features</h2>
65
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-10">
66
+ <div class="bg-gray-50 p-6 rounded-lg shadow hover:shadow-lg transition">
67
+ <i class="fas fa-bolt text-indigo-600 text-3xl mb-4"></i>
68
+ <h3 class="text-xl font-semibold mb-2">AI-Driven Outlines</h3>
69
+ <p class="text-gray-600">Create smart content outlines with minimal input and maximum output.</p>
70
+ </div>
71
+ <div class="bg-gray-50 p-6 rounded-lg shadow hover:shadow-lg transition">
72
+ <i class="fas fa-book text-indigo-600 text-3xl mb-4"></i>
73
+ <h3 class="text-xl font-semibold mb-2">Dynamic Documentation</h3>
74
+ <p class="text-gray-600">Generate and update documentation on the fly with intelligent tools.</p>
75
+ </div>
76
+ <div class="bg-gray-50 p-6 rounded-lg shadow hover:shadow-lg transition">
77
+ <i class="fas fa-cog text-indigo-600 text-3xl mb-4"></i>
78
+ <h3 class="text-xl font-semibold mb-2">Smart Templates</h3>
79
+ <p class="text-gray-600">Use adaptive templates that evolve with your content needs.</p>
80
+ </div>
81
+ </div>
82
+ </div>
83
+ </section>
84
+
85
+ <!-- Newsletter -->
86
+ <section class="py-16 bg-indigo-50">
87
+ <div class="max-w-3xl mx-auto text-center px-6">
88
+ <h2 class="text-3xl font-bold mb-4">Stay Updated</h2>
89
+ <p class="text-gray-700 mb-6">Subscribe to our newsletter for the latest updates and insights.</p>
90
+ <form id="newsletter-form" class="flex flex-col sm:flex-row items-center justify-center gap-4">
91
+ <input type="email" required placeholder="Enter your email" class="px-4 py-3 rounded-lg w-full sm:w-auto flex-1 focus:outline-none focus:ring-2 focus:ring-indigo-400" />
92
+ <button type="submit" class="bg-indigo-600 text-white px-6 py-3 rounded-lg hover:bg-indigo-700 transition">
93
+ Subscribe
94
+ </button>
95
+ </form>
96
+ <p id="newsletter-message" class="mt-4 text-sm text-green-600 hidden">Thanks for subscribing!</p>
97
+ </div>
98
+ </section>
99
+
100
+ <!-- Footer -->
101
+ <footer id="contact" class="bg-gray-800 text-white py-10">
102
+ <div class="max-w-6xl mx-auto px-6 text-center">
103
+ <p>&copy; 2025 KickBuzz. Powered by Comet. All rights reserved.</p>
104
+ </div>
105
+ </footer>
106
+
107
+ <!-- JavaScript -->
108
+ <script>
109
+ function loadSampleContent() {
110
+ const content = `
111
+ <h3>Sample AI-Driven Outline</h3>
112
+ <ul>
113
+ <li>1. Introduction</li>
114
+ <li>2. Key Concepts</li>
115
+ <li>3. Implementation Strategies</li>
116
+ <li>4. Case Studies</li>
117
+ <li>5. Conclusion</li>
118
+ </ul>
119
+ <p>This content was dynamically generated and can be extended with your own data or AI-powered input.</p>
120
+ `;
121
+ document.getElementById('dynamic-content').innerHTML = content;
122
+ }
123
+
124
+ document.getElementById('newsletter-form').addEventListener('submit', function(e) {
125
+ e.preventDefault();
126
+ const message = document.getElementById('newsletter-message');
127
+ message.classList.remove('hidden');
128
+ message.textContent = 'Thanks for subscribing!';
129
+ this.reset();
130
+ });
131
+ </script>
132
+ <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-qwensite.hf.space/logo.svg" alt="qwensite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-qwensite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >QwenSite</a> - 🧬 <a href="https://enzostvs-qwensite.hf.space?remix=Loddina/kickbuzz" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
133
+ </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.