agentcyone commited on
Commit
c1de5b8
·
verified ·
1 Parent(s): 11322bf

import React from "react"; export default function Website() { return ( <div className="min-h-screen font-sans"> {/* NAVBAR */} <header className="p-4 border-b flex justify-between items-center"> <div className="text-xl font-bold">LOGO</div> <nav className="space-x-4"> <a href="#home">Home</a> <a href="#features">Features</a> <a href="#contact">Contact</a> </nav> </header> {/* HOME PAGE */} <section id="home" className="p-6"> <div className="text-center"> <h1 className="text-4xl font-bold mb-4">Welcome to Our Site</h1> <p className="mb-6">Intro title and more info</p> <div className="bg-gray-200 h-64 mb-4">[Slide Image Placeholder]</div> </div> <div className="grid grid-cols-2 md:grid-cols-4 gap-4 mb-8"> {[...Array(4)].map((_, i) => ( <div key={i} className="bg-gray-300 h-20">[Logo]</div> ))} </div> <div className="text-center text-sm">© 2025 Company Name</div> </section> {/* FEATURES PAGE */} <section id="features" className="p-6 bg-gray-50"> <h2 className="text-2xl font-bold mb-4">Features</h2> {[1, 2, 3].map((num) => ( <div key={num} className="mb-6"> <h3 className="text-xl font-semibold">Feature #{num}</h3> <div className="bg-gray-200 h-40 my-2">[Feature Image]</div> <p>Feature description goes here...</p> </div> ))} </section> {/* CONTACT PAGE */} <section id="contact" className="p-6"> <h2 className="text-2xl font-bold mb-4">Contact Us</h2> <form className="grid gap-4 max-w-md"> <input type="text" placeholder="Name" className="p-2 border rounded" /> <input type="email" placeholder="Email" className="p-2 border rounded" /> <textarea placeholder="Message" className="p-2 border rounded" rows={4} /> <button type="submit" className="bg-black text-white py-2 rounded"> Send </button> </form> </section> </div> ); } - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +650 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Omnihub
3
- emoji: 🏆
4
- colorFrom: blue
5
- colorTo: pink
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: omnihub
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: green
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,650 @@
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>OmniHub - The All-in-One Modular SaaS Framework</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
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
12
+ }
13
+ .gradient-text {
14
+ background: linear-gradient(90deg, #3b82f6, #8b5cf6);
15
+ -webkit-background-clip: text;
16
+ background-clip: text;
17
+ color: transparent;
18
+ }
19
+ .card-hover {
20
+ transition: all 0.3s ease;
21
+ }
22
+ .card-hover:hover {
23
+ transform: translateY(-5px);
24
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
25
+ }
26
+ @keyframes float {
27
+ 0%, 100% {
28
+ transform: translateY(0);
29
+ }
30
+ 50% {
31
+ transform: translateY(-10px);
32
+ }
33
+ }
34
+ .floating {
35
+ animation: float 3s ease-in-out infinite;
36
+ }
37
+ .module-card:hover {
38
+ transform: translateY(-5px);
39
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
40
+ }
41
+ .animated-arrow {
42
+ transition: all 0.3s ease;
43
+ }
44
+ .module-card:hover .animated-arrow {
45
+ transform: translateX(5px);
46
+ }
47
+ .feature-grid {
48
+ display: grid;
49
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
50
+ gap: 1.5rem;
51
+ }
52
+ @media (max-width: 768px) {
53
+ .feature-grid {
54
+ grid-template-columns: 1fr;
55
+ }
56
+ }
57
+ </style>
58
+ </head>
59
+ <body class="font-sans antialiased text-gray-800 bg-gray-50">
60
+ <!-- Hero Section -->
61
+ <section class="py-16 md:py-24 bg-gradient-to-r from-indigo-50 to-purple-50">
62
+ <div class="container mx-auto px-4 sm:px-6 lg:px-8">
63
+ <nav class="flex justify-between items-center mb-8">
64
+ <div class="flex items-center">
65
+ <div class="w-10 h-10 bg-white rounded-lg flex items-center justify-center mr-3">
66
+ <i class="fas fa-cubes text-purple-600 text-xl"></i>
67
+ </div>
68
+ <span class="text-xl font-bold">OmniHub</span>
69
+ </div>
70
+ <div class="hidden md:flex space-x-8">
71
+ <a href="#features" class="hover:text-purple-200 transition">Features</a>
72
+ <a href="#modules" class="hover:text-purple-200 transition">Modules</a>
73
+ <a href="#benefits" class="hover:text-purple-200 transition">Benefits</a>
74
+ <a href="#contact" class="hover:text-purple-200 transition">Contact</a>
75
+ </div>
76
+ <button class="md:hidden text-xl">
77
+ <i class="fas fa-bars"></i>
78
+ </button>
79
+ </nav>
80
+
81
+ <div class="flex flex-col md:flex-row items-center">
82
+ <div class="md:w-1/2 mb-10 md:mb-0">
83
+ <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">
84
+ The <span class="gradient-text">All-in-One</span> Modular SaaS Framework
85
+ </h1>
86
+ <p class="text-lg text-gray-600 mb-8">
87
+ Build, manage, and scale your digital ecosystem with our flexible, plug-and-play platform that adapts to your needs.
88
+ </p>
89
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
90
+ <button class="bg-indigo-600 text-white px-6 py-3 rounded-lg hover:bg-indigo-700 transition font-medium">
91
+ Get Started <i class="fas fa-arrow-right ml-2"></i>
92
+ </button>
93
+ <button class="border border-gray-300 bg-white px-6 py-3 rounded-lg hover:bg-gray-50 transition font-medium">
94
+ Watch Demo
95
+ </button>
96
+ </div>
97
+ </div>
98
+ <div class="md:w-1/2 flex justify-center">
99
+ <div class="relative w-full max-w-md">
100
+ <div class="absolute -top-10 -left-10 w-32 h-32 bg-purple-200 rounded-full opacity-50"></div>
101
+ <div class="absolute -bottom-10 -right-10 w-32 h-32 bg-indigo-200 rounded-full opacity-50"></div>
102
+ <div class="relative bg-white p-6 rounded-xl shadow-lg floating">
103
+ <div class="flex justify-between items-center mb-4">
104
+ <div class="flex space-x-2">
105
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
106
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
107
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
108
+ </div>
109
+ <div class="text-sm text-gray-500">OmniHub Dashboard</div>
110
+ </div>
111
+ <div class="bg-gray-800 text-gray-100 p-4 rounded-lg overflow-x-auto">
112
+ <div class="h-64 flex items-center justify-center">
113
+ <i class="fas fa-cubes text-4xl text-indigo-400"></i>
114
+ </div>
115
+ </div>
116
+ </div>
117
+ </div>
118
+ </div>
119
+ </div>
120
+ </div>
121
+ </header>
122
+
123
+ <!-- Logo Cloud -->
124
+ <div class="py-12 bg-white">
125
+ <div class="container mx-auto px-4">
126
+ <p class="text-center text-gray-500 mb-8">Trusted by innovative teams at</p>
127
+ <div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
128
+ <div class="w-24 h-24 flex items-center justify-center text-gray-400">
129
+ <i class="fab fa-google text-4xl"></i>
130
+ </div>
131
+ <div class="w-24 h-24 flex items-center justify-center text-gray-400">
132
+ <i class="fab fa-microsoft text-4xl"></i>
133
+ </div>
134
+ <div class="w-24 h-24 flex items-center justify-center text-gray-400">
135
+ <i class="fab fa-amazon text-4xl"></i>
136
+ </div>
137
+ <div class="w-24 h-24 flex items-center justify-center text-gray-400">
138
+ <i class="fab fa-slack text-4xl"></i>
139
+ </div>
140
+ <div class="w-24 h-24 flex items-center justify-center text-gray-400">
141
+ <i class="fab fa-shopify text-4xl"></i>
142
+ </div>
143
+ </div>
144
+ </div>
145
+ </div>
146
+
147
+ <!-- Features -->
148
+ <section id="features" class="py-20 bg-gray-50">
149
+ <div class="container mx-auto px-4">
150
+ <div class="text-center mb-16">
151
+ <span class="inline-block px-3 py-1 text-sm font-semibold text-purple-600 bg-purple-100 rounded-full mb-4">FEATURES</span>
152
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Powerful Features for Modern Businesses</h2>
153
+ <p class="max-w-2xl mx-auto text-lg text-gray-600">OmniHub combines the best of multiple platforms into one cohesive, modular system that grows with your needs.</p>
154
+ </div>
155
+
156
+ <div class="feature-grid">
157
+ <div class="bg-white p-8 rounded-xl shadow-md card-hover">
158
+ <div class="w-14 h-14 bg-purple-100 rounded-lg flex items-center justify-center mb-6">
159
+ <i class="fas fa-puzzle-piece text-purple-600 text-2xl"></i>
160
+ </div>
161
+ <h3 class="text-xl font-bold mb-3">Modular Architecture</h3>
162
+ <p class="text-gray-600 mb-4">Activate only the services you need with our plug-and-play system. Each module functions independently yet connects seamlessly.</p>
163
+ <a href="#" class="text-purple-600 font-medium inline-flex items-center">
164
+ Learn more <i class="fas fa-arrow-right ml-2 animated-arrow"></i>
165
+ </a>
166
+ </div>
167
+
168
+ <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition">
169
+ <div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
170
+ <i class="fas fa-project-diagram text-blue-600 text-2xl"></i>
171
+ </div>
172
+ <h3 class="text-xl font-bold mb-3">Seamless Integration</h3>
173
+ <p class="text-gray-600 mb-4">Data flows smoothly across functions without contaminating primary purposes. Connect your existing tools effortlessly.</p>
174
+ <a href="#" class="text-blue-600 font-medium inline-flex items-center">
175
+ Learn more <i class="fas fa-arrow-right ml-2 animated-arrow"></i>
176
+ </a>
177
+ </div>
178
+
179
+ <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition">
180
+ <div class="w-14 h-14 bg-green-100 rounded-lg flex items-center justify-center mb-6">
181
+ <i class="fas fa-expand text-green-600 text-2xl"></i>
182
+ </div>
183
+ <h3 class="text-xl font-bold mb-3">Enterprise Scalability</h3>
184
+ <p class="text-gray-600 mb-4">From startups to Fortune 500 companies, our platform scales to meet your demands with robust infrastructure.</p>
185
+ <a href="#" class="text-green-600 font-medium inline-flex items-center">
186
+ Learn more <i class="fas fa-arrow-right ml-2 animated-arrow"></i>
187
+ </a>
188
+ </div>
189
+ </div>
190
+ </div>
191
+ </section>
192
+
193
+ <!-- Modules -->
194
+ <section id="modules" class="py-20 bg-white">
195
+ <div class="container mx-auto px-4">
196
+ <div class="text-center mb-16">
197
+ <span class="inline-block px-3 py-1 text-sm font-semibold text-purple-600 bg-purple-100 rounded-full mb-4">MODULES</span>
198
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Core Modules of OmniHub</h2>
199
+ <p class="max-w-2xl mx-auto text-lg text-gray-600">Mix and match these powerful modules to create your perfect digital ecosystem.</p>
200
+ </div>
201
+
202
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
203
+ <!-- Module 1 -->
204
+ <div class="module-card bg-white border border-gray-200 rounded-xl p-6 transition duration-300 ease-in-out">
205
+ <div class="flex items-center mb-4">
206
+ <div class="w-12 h-12 bg-purple-100 rounded-lg flex items-center justify-center mr-4">
207
+ <i class="fas fa-paint-brush text-purple-600"></i>
208
+ </div>
209
+ <h3 class="text-xl font-bold">Visual Builder</h3>
210
+ </div>
211
+ <p class="text-gray-600 mb-4">No-code, visual web and app design with drag-and-drop functionality, theme customization, and reusable components.</p>
212
+ <div class="flex flex-wrap gap-2 mb-4">
213
+ <span class="px-3 py-1 bg-purple-50 text-purple-600 text-sm rounded-full">Webstudio</span>
214
+ </div>
215
+ <a href="#" class="text-purple-600 font-medium inline-flex items-center">
216
+ Explore module <i class="fas fa-arrow-right ml-2 animated-arrow"></i>
217
+ </a>
218
+ </div>
219
+
220
+ <!-- Module 2 -->
221
+ <div class="module-card bg-white border border-gray-200 rounded-xl p-6 transition duration-300 ease-in-out">
222
+ <div class="flex items-center mb-4">
223
+ <div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
224
+ <i class="fas fa-table text-blue-600"></i>
225
+ </div>
226
+ <h3 class="text-xl font-bold">Spreadsheet-Database</h3>
227
+ </div>
228
+ <p class="text-gray-600 mb-4">Data organization with a familiar spreadsheet interface for database editing and collaborative project management.</p>
229
+ <div class="flex flex-wrap gap-2 mb-4">
230
+ <span class="px-3 py-1 bg-blue-50 text-blue-600 text-sm rounded-full">Rowy</span>
231
+ <span class="px-3 py-1 bg-blue-50 text-blue-600 text-sm rounded-full">NocoDB</span>
232
+ </div>
233
+ <a href="#" class="text-blue-600 font-medium inline-flex items-center">
234
+ Explore module <i class="fas fa-arrow-right ml-2 animated-arrow"></i>
235
+ </a>
236
+ </div>
237
+
238
+ <!-- Module 3 -->
239
+ <div class="module-card bg-white border border-gray-200 rounded-xl p-6 transition duration-300 ease-in-out">
240
+ <div class="flex items-center mb-4">
241
+ <div class="w-12 h-12 bg-green-100 rounded-lg flex items-center justify-center mr-4">
242
+ <i class="fas fa-server text-green-600"></i>
243
+ </div>
244
+ <h3 class="text-xl font-bold">Backend-as-a-Service</h3>
245
+ </div>
246
+ <p class="text-gray-600 mb-4">Serverless backend management with user authentication, file storage, APIs, and real-time data capabilities.</p>
247
+ <div class="flex flex-wrap gap-2 mb-4">
248
+ <span class="px-3 py-1 bg-green-50 text-green-600 text-sm rounded-full">PocketBase</span>
249
+ <span class="px-3 py-1 bg-green-50 text-green-600 text-sm rounded-full">Appwrite</span>
250
+ </div>
251
+ <a href="#" class="text-green-600 font-medium inline-flex items-center">
252
+ Explore module <i class="fas fa-arrow-right ml-2 animated-arrow"></i>
253
+ </a>
254
+ </div>
255
+
256
+ <!-- Module 4 -->
257
+ <div class="module-card bg-white border border-gray-200 rounded-xl p-6 transition duration-300 ease-in-out">
258
+ <div class="flex items-center mb-4">
259
+ <div class="w-12 h-12 bg-red-100 rounded-lg flex items-center justify-center mr-4">
260
+ <i class="fas fa-shopping-cart text-red-600"></i>
261
+ </div>
262
+ <h3 class="text-xl font-bold">E-commerce Suite</h3>
263
+ </div>
264
+ <p class="text-gray-600 mb-4">Full e-commerce capabilities including product management, checkout systems, and payment processing.</p>
265
+ <div class="flex flex-wrap gap-2 mb-4">
266
+ <span class="px-3 py-1 bg-red-50 text-red-600 text-sm rounded-full">Spree</span>
267
+ </div>
268
+ <a href="#" class="text-red-600 font-medium inline-flex items-center">
269
+ Explore module <i class="fas fa-arrow-right ml-2 animated-arrow"></i>
270
+ </a>
271
+ </div>
272
+
273
+ <!-- Module 5 -->
274
+ <div class="module-card bg-white border border-gray-200 rounded-xl p-6 transition duration-300 ease-in-out">
275
+ <div class="flex items-center mb-4">
276
+ <div class="w-12 h-12 bg-yellow-100 rounded-lg flex items-center justify-center mr-4">
277
+ <i class="fas fa-chart-line text-yellow-600"></i>
278
+ </div>
279
+ <h3 class="text-xl font-bold">Business Intelligence</h3>
280
+ </div>
281
+ <p class="text-gray-600 mb-4">Insight generation through data visualization with custom dashboards, data querying, and reporting tools.</p>
282
+ <div class="flex flex-wrap gap-2 mb-4">
283
+ <span class="px-3 py-1 bg-yellow-50 text-yellow-600 text-sm rounded-full">Metabase</span>
284
+ </div>
285
+ <a href="#" class="text-yellow-600 font-medium inline-flex items-center">
286
+ Explore module <i class="fas fa-arrow-right ml-2 animated-arrow"></i>
287
+ </a>
288
+ </div>
289
+
290
+ <!-- Module 6 -->
291
+ <div class="module-card bg-white border border-gray-200 rounded-xl p-6 transition duration-300 ease-in-out">
292
+ <div class="flex items-center mb-4">
293
+ <div class="w-12 h-12 bg-indigo-100 rounded-lg flex items-center justify-center mr-4">
294
+ <i class="fas fa-cogs text-indigo-600"></i>
295
+ </div>
296
+ <h3 class="text-xl font-bold">ERP & Workflow</h3>
297
+ </div>
298
+ <p class="text-gray-600 mb-4">End-to-end business process management with modules for inventory, accounting, HR, and more.</p>
299
+ <div class="flex flex-wrap gap-2 mb-4">
300
+ <span class="px-3 py-1 bg-indigo-50 text-indigo-600 text-sm rounded-full">ERPNext</span>
301
+ </div>
302
+ <a href="#" class="text-indigo-600 font-medium inline-flex items-center">
303
+ Explore module <i class="fas fa-arrow-right ml-2 animated-arrow"></i>
304
+ </a>
305
+ </div>
306
+ </div>
307
+ </div>
308
+ </section>
309
+
310
+ <!-- Unified Content Infrastructure -->
311
+ <section class="py-20 bg-gradient-to-r from-blue-50 to-purple-50">
312
+ <div class="container mx-auto px-4">
313
+ <div class="max-w-4xl mx-auto text-center mb-16">
314
+ <span class="inline-block px-3 py-1 text-sm font-semibold text-purple-600 bg-purple-100 rounded-full mb-4">UCI</span>
315
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Unified Content Infrastructure</h2>
316
+ <p class="text-lg text-gray-600">A next-generation, fully integrated platform designed to streamline and enhance every aspect of content management, creation, personalization, analytics, and delivery.</p>
317
+ </div>
318
+
319
+ <div class="grid md:grid-cols-2 gap-8 max-w-5xl mx-auto">
320
+ <div class="bg-white p-8 rounded-xl shadow-md">
321
+ <h3 class="text-xl font-bold mb-6 text-center">Content Management</h3>
322
+ <ul class="space-y-4">
323
+ <li class="flex items-start">
324
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i>
325
+ <span>CMS, DAM, WCM, CCMS</span>
326
+ </li>
327
+ <li class="flex items-start">
328
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i>
329
+ <span>Headless CMS for omnichannel</span>
330
+ </li>
331
+ <li class="flex items-start">
332
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i>
333
+ <span>AR/VR Content Management</span>
334
+ </li>
335
+ <li class="flex items-start">
336
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i>
337
+ <span>Voice Content Management</span>
338
+ </li>
339
+ </ul>
340
+ </div>
341
+
342
+ <div class="bg-white p-8 rounded-xl shadow-md">
343
+ <h3 class="text-xl font-bold mb-6 text-center">Advanced Features</h3>
344
+ <ul class="space-y-4">
345
+ <li class="flex items-start">
346
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i>
347
+ <span>AI-Driven Content Recommendations</span>
348
+ </li>
349
+ <li class="flex items-start">
350
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i>
351
+ <span>NFT for digital ownership</span>
352
+ </li>
353
+ <li class="flex items-start">
354
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i>
355
+ <span>Gamification System</span>
356
+ </li>
357
+ <li class="flex items-start">
358
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i>
359
+ <span>Knowledge Graph & Semantic Search</span>
360
+ </li>
361
+ </ul>
362
+ </div>
363
+ </div>
364
+ </div>
365
+ </section>
366
+
367
+ <!-- Benefits -->
368
+ <section id="benefits" class="py-20 bg-white">
369
+ <div class="container mx-auto px-4">
370
+ <div class="text-center mb-16">
371
+ <span class="inline-block px-3 py-1 text-sm font-semibold text-purple-600 bg-purple-100 rounded-full mb-4">BENEFITS</span>
372
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Why Choose OmniHub?</h2>
373
+ <p class="max-w-2xl mx-auto text-lg text-gray-600">Experience the advantages of a unified platform designed for the modern digital landscape.</p>
374
+ </div>
375
+
376
+ <div class="grid md:grid-cols-3 gap-8 max-w-6xl mx-auto">
377
+ <div class="bg-gray-50 p-8 rounded-xl">
378
+ <div class="w-14 h-14 bg-purple-100 rounded-lg flex items-center justify-center mb-6">
379
+ <i class="fas fa-globe text-purple-600 text-2xl"></i>
380
+ </div>
381
+ <h3 class="text-xl font-bold mb-3">Omnichannel Experience</h3>
382
+ <p class="text-gray-600">Reach users across web, mobile, social, voice, and immersive environments with consistent content delivery.</p>
383
+ </div>
384
+
385
+ <div class="bg-gray-50 p-8 rounded-xl">
386
+ <div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
387
+ <i class="fas fa-user-cog text-blue-600 text-2xl"></i>
388
+ </div>
389
+ <h3 class="text-xl font-bold mb-3">Personalization</h3>
390
+ <p class="text-gray-600">Deliver tailored experiences with AI-driven recommendations and interactive gamification elements.</p>
391
+ </div>
392
+
393
+ <div class="bg-gray-50 p-8 rounded-xl">
394
+ <div class="w-14 h-14 bg-green-100 rounded-lg flex items-center justify-center mb-6">
395
+ <i class="fas fa-tachometer-alt text-green-600 text-2xl"></i>
396
+ </div>
397
+ <h3 class="text-xl font-bold mb-3">Operational Efficiency</h3>
398
+ <p class="text-gray-600">Streamline processes with automation, freeing up time for creative and strategic tasks.</p>
399
+ </div>
400
+
401
+ <div class="bg-gray-50 p-8 rounded-xl">
402
+ <div class="w-14 h-14 bg-red-100 rounded-lg flex items-center justify-center mb-6">
403
+ <i class="fas fa-shield-alt text-red-600 text-2xl"></i>
404
+ </div>
405
+ <h3 class="text-xl font-bold mb-3">Security & Compliance</h3>
406
+ <p class="text-gray-600">Protect content and secure data with robust DRM, compliance management, and permissions controls.</p>
407
+ </div>
408
+
409
+ <div class="bg-gray-50 p-8 rounded-xl">
410
+ <div class="w-14 h-14 bg-yellow-100 rounded-lg flex items-center justify-center mb-6">
411
+ <i class="fas fa-chart-pie text-yellow-600 text-2xl"></i>
412
+ </div>
413
+ <h3 class="text-xl font-bold mb-3">Data-Driven Decisions</h3>
414
+ <p class="text-gray-600">Optimize continuously with integrated BI tools and A/B testing based on performance metrics.</p>
415
+ </div>
416
+
417
+ <div class="bg-gray-50 p-8 rounded-xl">
418
+ <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6">
419
+ <i class="fas fa-money-bill-wave text-indigo-600 text-2xl"></i>
420
+ </div>
421
+ <h3 class="text-xl font-bold mb-3">Cost Efficiency</h3>
422
+ <p class="text-gray-600">Reduce infrastructure complexity and minimize multiple subscriptions with our unified platform.</p>
423
+ </div>
424
+ </div>
425
+ </div>
426
+ </section>
427
+
428
+ <!-- CTA Section -->
429
+ <section class="py-16 md:py-24 bg-indigo-600 text-white">
430
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
431
+ <div class="text-center">
432
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Digital Ecosystem?</h2>
433
+ <p class="text-lg mb-8 max-w-2xl mx-auto opacity-90">
434
+ Join thousands of businesses leveraging OmniHub to streamline their operations and deliver exceptional digital experiences.
435
+ </p>
436
+ <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
437
+ <button class="bg-white text-indigo-600 px-8 py-3 rounded-lg hover:bg-gray-100 transition font-medium">
438
+ Start Free Trial
439
+ </button>
440
+ <button class="border border-white text-white px-8 py-3 rounded-lg hover:bg-indigo-700 transition font-medium">
441
+ Request Demo
442
+ </button>
443
+ </div>
444
+ </div>
445
+ </div>
446
+ </section>
447
+
448
+ <!-- Contact -->
449
+ <section id="contact" class="py-20 bg-white">
450
+ <div class="container mx-auto px-4">
451
+ <div class="max-w-4xl mx-auto">
452
+ <div class="text-center mb-16">
453
+ <span class="inline-block px-3 py-1 text-sm font-semibold text-purple-600 bg-purple-100 rounded-full mb-4">CONTACT</span>
454
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Get In Touch</h2>
455
+ <p class="max-w-2xl mx-auto text-lg text-gray-600">Have questions about OmniHub? Our team is here to help.</p>
456
+ </div>
457
+
458
+ <div class="grid md:grid-cols-2 gap-12">
459
+ <div>
460
+ <h3 class="text-xl font-bold mb-6">Contact Information</h3>
461
+ <div class="space-y-6">
462
+ <div class="flex items-start">
463
+ <div class="w-10 h-10 bg-purple-100 rounded-lg flex items-center justify-center mr-4">
464
+ <i class="fas fa-map-marker-alt text-purple-600"></i>
465
+ </div>
466
+ <div>
467
+ <h4 class="font-medium">Address</h4>
468
+ <p class="text-gray-600">123 Tech Park, San Francisco, CA 94107</p>
469
+ </div>
470
+ </div>
471
+
472
+ <div class="flex items-start">
473
+ <div class="w-10 h-10 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
474
+ <i class="fas fa-envelope text-blue-600"></i>
475
+ </div>
476
+ <div>
477
+ <h4 class="font-medium">Email</h4>
478
+ <p class="text-gray-600">hello@omnihub.io</p>
479
+ </div>
480
+ </div>
481
+
482
+ <div class="flex items-start">
483
+ <div class="w-10 h-10 bg-green-100 rounded-lg flex items-center justify-center mr-4">
484
+ <i class="fas fa-phone-alt text-green-600"></i>
485
+ </div>
486
+ <div>
487
+ <h4 class="font-medium">Phone</h4>
488
+ <p class="text-gray-600">+1 (555) 123-4567</p>
489
+ </div>
490
+ </div>
491
+ </div>
492
+
493
+ <div class="mt-8">
494
+ <h3 class="text-xl font-bold mb-4">Follow Us</h3>
495
+ <div class="flex space-x-4">
496
+ <a href="#" class="w-10 h-10 bg-gray-100 hover:bg-purple-100 rounded-full flex items-center justify-center transition">
497
+ <i class="fab fa-twitter text-gray-600 hover:text-purple-600"></i>
498
+ </a>
499
+ <a href="#" class="w-10 h-10 bg-gray-100 hover:bg-blue-100 rounded-full flex items-center justify-center transition">
500
+ <i class="fab fa-linkedin-in text-gray-600 hover:text-blue-600"></i>
501
+ </a>
502
+ <a href="#" class="w-10 h-10 bg-gray-100 hover:bg-pink-100 rounded-full flex items-center justify-center transition">
503
+ <i class="fab fa-instagram text-gray-600 hover:text-pink-600"></i>
504
+ </a>
505
+ <a href="#" class="w-10 h-10 bg-gray-100 hover:bg-red-100 rounded-full flex items-center justify-center transition">
506
+ <i class="fab fa-youtube text-gray-600 hover:text-red-600"></i>
507
+ </a>
508
+ </div>
509
+ </div>
510
+ </div>
511
+
512
+ <div>
513
+ <form class="space-y-6">
514
+ <div>
515
+ <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Full Name</label>
516
+ <input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-purple-500 outline-none transition">
517
+ </div>
518
+
519
+ <div>
520
+ <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email Address</label>
521
+ <input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-purple-500 outline-none transition">
522
+ </div>
523
+
524
+ <div>
525
+ <label for="subject" class="block text-sm font-medium text-gray-700 mb-1">Subject</label>
526
+ <input type="text" id="subject" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-purple-500 outline-none transition">
527
+ </div>
528
+
529
+ <div>
530
+ <label for="message" class="block text-sm font-medium text-gray-700 mb-1">Message</label>
531
+ <textarea id="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-purple-500 outline-none transition"></textarea>
532
+ </div>
533
+
534
+ <button type="submit" class="w-full bg-purple-600 hover:bg-purple-700 text-white px-6 py-3 rounded-lg font-medium transition">
535
+ Send Message
536
+ </button>
537
+ </form>
538
+ </div>
539
+ </div>
540
+ </div>
541
+ </div>
542
+ </section>
543
+
544
+ <!-- Footer -->
545
+ <footer class="bg-gray-900 text-white py-12">
546
+ <div class="container mx-auto px-4">
547
+ <div class="grid md:grid-cols-4 gap-8 mb-8">
548
+ <div>
549
+ <div class="flex items-center mb-4">
550
+ <div class="w-10 h-10 bg-white rounded-lg flex items-center justify-center mr-3">
551
+ <i class="fas fa-cubes text-purple-600"></i>
552
+ </div>
553
+ <span class="text-xl font-bold">OmniHub</span>
554
+ </div>
555
+ <p class="text-gray-400">The all-in-one modular SaaS framework for modern businesses.</p>
556
+ </div>
557
+
558
+ <div>
559
+ <h3 class="text-lg font-semibold mb-4">Product</h3>
560
+ <ul class="space-y-2">
561
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li>
562
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li>
563
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Modules</a></li>
564
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Integrations</a></li>
565
+ </ul>
566
+ </div>
567
+
568
+ <div>
569
+ <h3 class="text-lg font-semibold mb-4">Resources</h3>
570
+ <ul class="space-y-2">
571
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Documentation</a></li>
572
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Tutorials</a></li>
573
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
574
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Support</a></li>
575
+ </ul>
576
+ </div>
577
+
578
+ <div>
579
+ <h3 class="text-lg font-semibold mb-4">Company</h3>
580
+ <ul class="space-y-2">
581
+ <li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
582
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
583
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li>
584
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li>
585
+ </ul>
586
+ </div>
587
+ </div>
588
+
589
+ <div class="pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
590
+ <p class="text-gray-400 mb-4 md:mb-0">© 2023 OmniHub. All rights reserved.</p>
591
+ <div class="flex space-x-6">
592
+ <a href="#" class="text-gray-400 hover:text-white transition">
593
+ <i class="fab fa-twitter"></i>
594
+ </a>
595
+ <a href="#" class="text-gray-400 hover:text-white transition">
596
+ <i class="fab fa-linkedin-in"></i>
597
+ </a>
598
+ <a href="#" class="text-gray-400 hover:text-white transition">
599
+ <i class="fab fa-facebook-f"></i>
600
+ </a>
601
+ <a href="#" class="text-gray-400 hover:text-white transition">
602
+ <i class="fab fa-github"></i>
603
+ </a>
604
+ </div>
605
+ </div>
606
+ </div>
607
+ </footer>
608
+
609
+ <script>
610
+ // Simple JavaScript for mobile menu toggle
611
+ document.addEventListener('DOMContentLoaded', function() {
612
+ const mobileMenuButton = document.querySelector('.md\\:hidden');
613
+ const mobileMenu = document.querySelector('.md\\:flex');
614
+
615
+ mobileMenuButton.addEventListener('click', function() {
616
+ if (mobileMenu.classList.contains('hidden')) {
617
+ mobileMenu.classList.remove('hidden');
618
+ mobileMenu.classList.add('flex', 'flex-col', 'absolute', 'top-16', 'right-4', 'bg-white', 'shadow-lg', 'rounded-lg', 'p-4', 'space-y-4', 'z-50');
619
+ } else {
620
+ mobileMenu.classList.add('hidden');
621
+ mobileMenu.classList.remove('flex', 'flex-col', 'absolute', 'top-16', 'right-4', 'bg-white', 'shadow-lg', 'rounded-lg', 'p-4', 'space-y-4', 'z-50');
622
+ }
623
+ });
624
+
625
+ // Smooth scrolling for anchor links
626
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
627
+ anchor.addEventListener('click', function (e) {
628
+ e.preventDefault();
629
+
630
+ const targetId = this.getAttribute('href');
631
+ if (targetId === '#') return;
632
+
633
+ const targetElement = document.querySelector(targetId);
634
+ if (targetElement) {
635
+ targetElement.scrollIntoView({
636
+ behavior: 'smooth'
637
+ });
638
+
639
+ // Close mobile menu if open
640
+ if (!mobileMenu.classList.contains('hidden')) {
641
+ mobileMenu.classList.add('hidden');
642
+ mobileMenu.classList.remove('flex', 'flex-col', 'absolute', 'top-16', 'right-4', 'bg-white', 'shadow-lg', 'rounded-lg', 'p-4', 'space-y-4', 'z-50');
643
+ }
644
+ }
645
+ });
646
+ });
647
+ });
648
+ </script>
649
+ <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=agentcyone/omnihub" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
650
+ </html>