creatorshub / index.html
Araptoo's picture
undefined - Initial Deployment
846780e verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CreatorsHub - Digital Marketplace Platform</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, #a777e3);
}
.sidebar-item:hover {
background-color: rgba(255, 255, 255, 0.1);
border-left: 3px solid white;
}
.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.drag-drop-zone {
border: 2px dashed #a777e3;
transition: all 0.3s ease;
}
.drag-drop-zone.active {
border-color: #6e8efb;
background-color: rgba(110, 142, 251, 0.1);
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Navigation -->
<nav class="gradient-bg text-white shadow-lg">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-store text-2xl"></i>
<span class="text-xl font-bold">CreatorsHub</span>
</div>
<div class="hidden md:flex items-center space-x-6">
<a href="#" class="hover:text-gray-200">Marketplace</a>
<a href="#" class="hover:text-gray-200">Features</a>
<a href="#" class="hover:text-gray-200">Pricing</a>
<a href="#" class="hover:text-gray-200">Resources</a>
</div>
<div class="flex items-center space-x-4">
<button class="px-4 py-2 rounded-lg bg-white text-purple-600 font-medium hover:bg-gray-100">Sign In</button>
<button class="px-4 py-2 rounded-lg bg-purple-700 text-white font-medium hover:bg-purple-800">Get Started</button>
<button class="md:hidden text-2xl">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="gradient-bg text-white py-16 md:py-24">
<div class="container mx-auto px-4 text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Sell Your Digital & Physical Products With Ease</h1>
<p class="text-xl mb-8 max-w-2xl mx-auto">The all-in-one platform for creators and entrepreneurs to build, manage, and grow their online business.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="px-8 py-3 bg-white text-purple-600 rounded-lg font-bold hover:bg-gray-100 transition">Start Selling Now</button>
<button class="px-8 py-3 bg-transparent border-2 border-white rounded-lg font-bold hover:bg-white hover:text-purple-600 transition">Watch Demo</button>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Powerful Features For Your Business</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-gray-50 p-6 rounded-xl shadow-sm hover:shadow-md transition">
<div class="w-12 h-12 gradient-bg rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-store text-white text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Custom Storefront</h3>
<p class="text-gray-600">Create a beautiful, branded storefront that matches your unique style and vision.</p>
</div>
<!-- Feature 2 -->
<div class="bg-gray-50 p-6 rounded-xl shadow-sm hover:shadow-md transition">
<div class="w-12 h-12 gradient-bg rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-money-bill-wave text-white text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Multi-Currency Payments</h3>
<p class="text-gray-600">Accept payments in multiple currencies including NGN, USD, GBP and more.</p>
</div>
<!-- Feature 3 -->
<div class="bg-gray-50 p-6 rounded-xl shadow-sm hover:shadow-md transition">
<div class="w-12 h-12 gradient-bg rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-users text-white text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Affiliate Marketing</h3>
<p class="text-gray-600">Grow your sales with our built-in affiliate marketing system and marketplace.</p>
</div>
<!-- Feature 4 -->
<div class="bg-gray-50 p-6 rounded-xl shadow-sm hover:shadow-md transition">
<div class="w-12 h-12 gradient-bg rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-chart-line text-white text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Advanced Analytics</h3>
<p class="text-gray-600">Track your sales, customer behavior, and marketing performance in real-time.</p>
</div>
<!-- Feature 5 -->
<div class="bg-gray-50 p-6 rounded-xl shadow-sm hover:shadow-md transition">
<div class="w-12 h-12 gradient-bg rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-tools text-white text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Drag & Drop Builder</h3>
<p class="text-gray-600">Easily create and customize your products and pages with our intuitive builder.</p>
</div>
<!-- Feature 6 -->
<div class="bg-gray-50 p-6 rounded-xl shadow-sm hover:shadow-md transition">
<div class="w-12 h-12 gradient-bg rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-headset text-white text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">24/7 Support</h3>
<p class="text-gray-600">Our dedicated support team is always available to help you with any questions.</p>
</div>
</div>
</div>
</section>
<!-- Dashboard Preview -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row items-center gap-12">
<div class="lg:w-1/2">
<h2 class="text-3xl font-bold mb-6">Your All-In-One Business Dashboard</h2>
<p class="text-gray-600 mb-6">Manage your products, sales, marketing, and customers from one centralized dashboard designed to help you grow your business.</p>
<ul class="space-y-4">
<li class="flex items-start">
<i class="fas fa-check-circle text-purple-600 mt-1 mr-3"></i>
<span>Real-time sales analytics and reporting</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-purple-600 mt-1 mr-3"></i>
<span>Product management and inventory tracking</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-purple-600 mt-1 mr-3"></i>
<span>Customer relationship management tools</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-purple-600 mt-1 mr-3"></i>
<span>Marketing campaign creation and tracking</span>
</li>
</ul>
</div>
<div class="lg:w-1/2 relative">
<div class="bg-white p-2 rounded-xl shadow-xl">
<div class="flex items-center bg-gray-100 p-2 rounded-t-lg">
<div class="flex space-x-2 mr-4">
<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-600">dashboard.creatorshub.com</div>
</div>
<div class="p-4">
<!-- Dashboard mockup content -->
<div class="flex mb-4">
<div class="w-1/4 bg-purple-100 rounded-lg p-4">
<div class="text-xs text-purple-800 mb-1">Total Revenue</div>
<div class="text-xl font-bold">₦1,245,800</div>
</div>
<div class="w-1/4 bg-blue-100 rounded-lg p-4 mx-2">
<div class="text-xs text-blue-800 mb-1">Total Sales</div>
<div class="text-xl font-bold">428</div>
</div>
<div class="w-1/4 bg-green-100 rounded-lg p-4 mr-2">
<div class="text-xs text-green-800 mb-1">New Customers</div>
<div class="text-xl font-bold">197</div>
</div>
<div class="w-1/4 bg-yellow-100 rounded-lg p-4">
<div class="text-xs text-yellow-800 mb-1">Conversion</div>
<div class="text-xl font-bold">3.2%</div>
</div>
</div>
<div class="bg-white border rounded-lg p-4 mb-4">
<div class="flex justify-between items-center mb-3">
<h3 class="font-semibold">Recent Sales</h3>
<button class="text-xs text-purple-600">View All</button>
</div>
<div class="space-y-3">
<div class="flex items-center justify-between text-sm">
<div class="flex items-center">
<div class="w-8 h-8 bg-gray-200 rounded-full mr-2"></div>
<div>
<div>Digital Art Pack</div>
<div class="text-xs text-gray-500">2 hours ago</div>
</div>
</div>
<div class="font-medium">₦12,500</div>
</div>
<div class="flex items-center justify-between text-sm">
<div class="flex items-center">
<div class="w-8 h-8 bg-gray-200 rounded-full mr-2"></div>
<div>
<div>E-book Bundle</div>
<div class="text-xs text-gray-500">5 hours ago</div>
</div>
</div>
<div class="font-medium">₦8,000</div>
</div>
</div>
</div>
<div class="bg-white border rounded-lg p-4">
<div class="flex justify-between items-center mb-3">
<h3 class="font-semibold">Quick Actions</h3>
</div>
<div class="grid grid-cols-2 gap-2">
<button class="text-xs bg-gray-100 hover:bg-gray-200 p-2 rounded flex items-center">
<i class="fas fa-plus mr-1 text-purple-600"></i> Add Product
</button>
<button class="text-xs bg-gray-100 hover:bg-gray-200 p-2 rounded flex items-center">
<i class="fas fa-bullhorn mr-1 text-purple-600"></i> Create Campaign
</button>
<button class="text-xs bg-gray-100 hover:bg-gray-200 p-2 rounded flex items-center">
<i class="fas fa-chart-pie mr-1 text-purple-600"></i> View Reports
</button>
<button class="text-xs bg-gray-100 hover:bg-gray-200 p-2 rounded flex items-center">
<i class="fas fa-user-plus mr-1 text-purple-600"></i> Invite Affiliate
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Product Management Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Effortless Product Management</h2>
<div class="flex flex-col lg:flex-row items-center gap-12">
<div class="lg:w-1/2 relative">
<div class="bg-white p-4 rounded-xl shadow-lg border">
<div class="flex items-center bg-gray-100 p-2 rounded-t-lg mb-4">
<div class="text-sm font-medium">Add New Product</div>
</div>
<div class="space-y-4">
<div>
<label class="block text-sm font-medium mb-1">Product Name</label>
<input type="text" class="w-full p-2 border rounded-lg" placeholder="e.g. Premium Digital Template Pack">
</div>
<div>
<label class="block text-sm font-medium mb-1">Product Type</label>
<select class="w-full p-2 border rounded-lg">
<option>Digital Product</option>
<option>Physical Product</option>
<option>Service</option>
<option>Bundle</option>
</select>
</div>
<div class="drag-drop-zone rounded-lg p-8 text-center cursor-pointer">
<i class="fas fa-cloud-upload-alt text-3xl text-purple-500 mb-2"></i>
<p class="font-medium">Drag & drop your product files here</p>
<p class="text-sm text-gray-500">or click to browse files</p>
</div>
<div class="grid grid-cols-2 gap-4">
<div>
<label class="block text-sm font-medium mb-1">Price (₦)</label>
<input type="number" class="w-full p-2 border rounded-lg" placeholder="3000">
</div>
<div>
<label class="block text-sm font-medium mb-1">Category</label>
<select class="w-full p-2 border rounded-lg">
<option>Digital Art</option>
<option>Templates</option>
<option>E-books</option>
<option>Courses</option>
</select>
</div>
</div>
<div>
<label class="block text-sm font-medium mb-1">Description</label>
<div class="border rounded-lg p-2 min-h-[100px] bg-gray-50">
<div class="flex space-x-2 mb-2">
<button class="w-6 h-6 bg-gray-200 rounded flex items-center justify-center">
<i class="fas fa-bold text-xs"></i>
</button>
<button class="w-6 h-6 bg-gray-200 rounded flex items-center justify-center">
<i class="fas fa-italic text-xs"></i>
</button>
<button class="w-6 h-6 bg-gray-200 rounded flex items-center justify-center">
<i class="fas fa-list-ul text-xs"></i>
</button>
</div>
<textarea class="w-full bg-transparent outline-none" placeholder="Enter detailed product description..."></textarea>
</div>
</div>
<div class="flex justify-end">
<button class="px-6 py-2 bg-purple-600 text-white rounded-lg hover:bg-purple-700">Save Product</button>
</div>
</div>
</div>
</div>
<div class="lg:w-1/2">
<h3 class="text-2xl font-semibold mb-4">Manage Your Products With Ease</h3>
<p class="text-gray-600 mb-6">Our intuitive product management system makes it simple to add, organize, and update your digital and physical products.</p>
<div class="space-y-6">
<div class="flex">
<div class="mr-4">
<div class="w-12 h-12 gradient-bg rounded-lg flex items-center justify-center">
<i class="fas fa-box-open text-white"></i>
</div>
</div>
<div>
<h4 class="font-semibold mb-1">Product Variations</h4>
<p class="text-gray-600">Create multiple variations of your products with different prices, files, or options.</p>
</div>
</div>
<div class="flex">
<div class="mr-4">
<div class="w-12 h-12 gradient-bg rounded-lg flex items-center justify-center">
<i class="fas fa-tags text-white"></i>
</div>
</div>
<div>
<h4 class="font-semibold mb-1">Bundles & Discounts</h4>
<p class="text-gray-600">Package multiple products together or offer discounts to increase sales.</p>
</div>
</div>
<div class="flex">
<div class="mr-4">
<div class="w-12 h-12 gradient-bg rounded-lg flex items-center justify-center">
<i class="fas fa-globe text-white"></i>
</div>
</div>
<div>
<h4 class="font-semibold mb-1">Global Pricing</h4>
<p class="text-gray-600">Set prices in multiple currencies and automatically convert based on customer location.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Affiliate Marketing Section -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">Grow Your Sales With Affiliate Marketing</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Leverage our built-in affiliate network to have others promote your products for commissions.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Affiliate Card 1 -->
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition">
<div class="gradient-bg text-white w-14 h-14 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-user-plus text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Affiliate Recruitment</h3>
<p class="text-gray-600 mb-4">Easily recruit affiliates from our marketplace or invite your own network to promote your products.</p>
<ul class="space-y-2 text-sm">
<li class="flex items-start">
<i class="fas fa-check text-purple-600 mt-1 mr-2"></i>
<span>Automated affiliate signup</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-purple-600 mt-1 mr-2"></i>
<span>Affiliate approval controls</span>
</li>
</ul>
</div>
<!-- Affiliate Card 2 -->
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition">
<div class="gradient-bg text-white w-14 h-14 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-percentage text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Commission Management</h3>
<p class="text-gray-600 mb-4">Set custom commission rates per product or category to incentivize your affiliates.</p>
<ul class="space-y-2 text-sm">
<li class="flex items-start">
<i class="fas fa-check text-purple-600 mt-1 mr-2"></i>
<span>Minimum 20-30% commission rates</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-purple-600 mt-1 mr-2"></i>
<span>Fixed or percentage commissions</span>
</li>
</ul>
</div>
<!-- Affiliate Card 3 -->
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition">
<div class="gradient-bg text-white w-14 h-14 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-chart-bar text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Performance Tracking</h3>
<p class="text-gray-600 mb-4">Monitor affiliate performance, track conversions, and optimize your program.</p>
<ul class="space-y-2 text-sm">
<li class="flex items-start">
<i class="fas fa-check text-purple-600 mt-1 mr-2"></i>
<span>Real-time sales attribution</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-purple-600 mt-1 mr-2"></i>
<span>Detailed affiliate reports</span>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">Simple, Transparent Pricing</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Choose the plan that fits your business needs. No hidden fees, cancel anytime.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Starter Plan -->
<div class="border rounded-xl overflow-hidden hover:shadow-lg transition">
<div class="bg-gray-50 p-6 border-b">
<h3 class="text-xl font-semibold">Starter</h3>
<div class="mt-4">
<span class="text-3xl font-bold">₦3,000</span>
<span class="text-gray-600">/month</span>
</div>
<p class="text-sm text-gray-500 mt-2">Perfect for individuals just starting out</p>
</div>
<div class="p-6">
<ul class="space-y-3 mb-6">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Up to 10 products</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Basic store customization</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>5% transaction fee</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Email support</span>
</li>
</ul>
<button class="w-full py-3 border border-purple-600 text-purple-600 rounded-lg font-medium hover:bg-purple-50">Get Started</button>
</div>
</div>
<!-- Pro Plan (Featured) -->
<div class="border-2 border-purple-600 rounded-xl overflow-hidden shadow-lg transform scale-105">
<div class="bg-purple-600 text-white p-4 text-center">
<span class="font-medium">MOST POPULAR</span>
</div>
<div class="bg-gray-50 p-6 border-b">
<h3 class="text-xl font-semibold">Pro</h3>
<div class="mt-4">
<span class="text-3xl font-bold">₦8,000</span>
<span class="text-gray-600">/month</span>
</div>
<p class="text-sm text-gray-500 mt-2">For growing businesses with more products</p>
</div>
<div class="p-6">
<ul class="space-y-3 mb-6">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Up to 100 products</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Advanced store customization</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>3% transaction fee</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Affiliate marketing tools</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Priority email support</span>
</li>
</ul>
<button class="w-full py-3 bg-purple-600 text-white rounded-lg font-medium hover:bg-purple-700">Get Started</button>
</div>
</div>
<!-- Enterprise Plan -->
<div class="border rounded-xl overflow-hidden hover:shadow-lg transition">
<div class="bg-gray-50 p-6 border-b">
<h3 class="text-xl font-semibold">Enterprise</h3>
<div class="mt-4">
<span class="text-3xl font-bold">₦20,000</span>
<span class="text-gray-600">/month</span>
</div>
<p class="text-sm text-gray-500 mt-2">For high-volume businesses</p>
</div>
<div class="p-6">
<ul class="space-y-3 mb-6">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Unlimited products</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>White-label options</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>1% transaction fee</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Advanced analytics</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>24/7 priority support</span>
</li>
</ul>
<button class="w-full py-3 border border-purple-600 text-purple-600 rounded-lg font-medium hover:bg-purple-50">Get Started</button>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="gradient-bg text-white py-16">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Start Selling Online?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">Join thousands of creators and entrepreneurs who are growing their businesses with CreatorsHub.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="px-8 py-3 bg-white text-purple-600 rounded-lg font-bold hover:bg-gray-100 transition">Start Your Free Trial</button>
<button class="px-8 py-3 bg-transparent border-2 border-white rounded-lg font-bold hover:bg-white hover:text-purple-600 transition">Schedule a Demo</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-gray-300 py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<i class="fas fa-store text-2xl text-purple-500"></i>
<span class="text-xl font-bold text-white">CreatorsHub</span>
</div>
<p class="mb-4">The all-in-one platform for creators to sell digital and physical products online.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
<div>
<h3 class="text-white font-semibold mb-4">Platform</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white">Features</a></li>
<li><a href="#" class="hover:text-white">Pricing</a></li>
<li><a href="#" class="hover:text-white">Affiliate Program</a></li>
<li><a href="#" class="hover:text-white">Marketplace</a></li>
<li><a href="#" class="hover:text-white">Roadmap</a></li>
</ul>
</div>
<div>
<h3 class="text-white font-semibold mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white">Documentation</a></li>
<li><a href="#" class="hover:text-white">Tutorials</a></li>
<li><a href="#" class="hover:text-white">Blog</a></li>
<li><a href="#" class="hover:text-white">Community</a></li>
<li><a href="#" class="hover:text-white">Webinars</a></li>
</ul>
</div>
<div>
<h3 class="text-white font-semibold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white">About Us</a></li>
<li><a href="#" class="hover:text-white">Careers</a></li>
<li><a href="#" class="hover:text-white">Contact</a></li>
<li><a href="#" class="hover:text-white">Privacy Policy</a></li>
<li><a href="#" class="hover:text-white">Terms of Service</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-sm text-gray-500">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
&copy; 2023 CreatorsHub. All rights reserved.
</div>
<div class="flex space-x-6">
<a href="#" class="hover:text-white">Privacy</a>
<a href="#" class="hover:text-white">Terms</a>
<a href="#" class="hover:text-white">Cookies</a>
</div>
</div>
</div>
</div>
</footer>
<script>
// Simple drag and drop interaction for the demo
const dropZone = document.querySelector('.drag-drop-zone');
dropZone.addEventListener('dragover', (e) => {
e.preventDefault();
dropZone.classList.add('active');
});
dropZone.addEventListener('dragleave', () => {
dropZone.classList.remove('active');
});
dropZone.addEventListener('drop', (e) => {
e.preventDefault();
dropZone.classList.remove('active');
alert('Files uploaded successfully!');
});
dropZone.addEventListener('click', () => {
alert('File browser opened!');
});
</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=Araptoo/creatorshub" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>