omnihub / index.html
agentcyone's picture
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
c1de5b8 verified
<!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>