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