File size: 24,578 Bytes
0da1f93 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ArtGenius | AI-Powered Art Design</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">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#8B5CF6',
secondary: '#EC4899',
dark: '#1F2937',
light: '#F9FAFB'
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
color: #f3f4f6;
min-height: 100vh;
}
.drop-zone {
border: 2px dashed #8B5CF6;
border-radius: 1rem;
transition: all 0.3s ease;
background: rgba(30, 41, 59, 0.5);
backdrop-filter: blur(10px);
}
.drop-zone.active {
border-color: #EC4899;
background: rgba(139, 92, 246, 0.1);
}
.card {
background: rgba(30, 41, 59, 0.7);
border-radius: 1rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}
.tool-item {
transition: all 0.2s ease;
cursor: grab;
}
.tool-item:active {
cursor: grabbing;
}
.generated-art {
transition: all 0.3s ease;
}
.generated-art:hover {
transform: scale(1.03);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.gradient-text {
background: linear-gradient(90deg, #8B5CF6 0%, #EC4899 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, #8B5CF6 0%, #EC4899 100%);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.animate-fade-in-up {
animation: fadeInUp 0.8s ease-out forwards;
opacity: 0;
transform: translateY(20px);
}
.delay-100 {
animation-delay: 0.1s;
}
.delay-200 {
animation-delay: 0.2s;
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7); }
70% { box-shadow: 0 0 0 15px rgba(139, 92, 246, 0); }
100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}
.artwork-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 1.5rem;
}
@media (max-width: 768px) {
.artwork-grid {
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
}
</style>
</head>
<body>
<!-- Header -->
<header class="py-4 px-6 md:px-12">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="w-10 h-10 rounded-full bg-gradient-to-r from-primary to-secondary flex items-center justify-center">
<i class="fas fa-palette text-white text-xl"></i>
</div>
<h1 class="text-2xl font-bold">Art<span class="gradient-text">Genius</span></h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="nav-link font-medium">Home</a>
<a href="#" class="nav-link font-medium">Gallery</a>
<a href="#" class="nav-link font-medium">Tools</a>
<a href="#" class="nav-link font-medium">Pricing</a>
<a href="#" class="nav-link font-medium">About</a>
</nav>
<div class="flex items-center space-x-4">
<button class="px-4 py-2 rounded-full bg-primary hover:bg-purple-700 transition-colors">
<i class="fas fa-sign-in-alt mr-2"></i>Sign In
</button>
<button class="md:hidden text-2xl">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="py-20 px-6 md:px-12">
<div class="container mx-auto text-center max-w-4xl">
<h1 class="text-4xl md:text-6xl font-bold mb-6 animate-fade-in-up">Transform Your <span class="gradient-text">Creativity</span> with AI</h1>
<p class="text-xl text-gray-300 mb-12 max-w-2xl mx-auto animate-fade-in-up delay-100">
Drag, drop, and create stunning artworks with the power of AI. Integrates with Open Router and Fal for limitless creative possibilities.
</p>
<div class="flex flex-wrap justify-center gap-4 mb-16">
<button class="px-8 py-3 bg-gradient-to-r from-primary to-secondary rounded-full font-bold hover:opacity-90 transition-opacity">
Start Creating
</button>
<button class="px-8 py-3 bg-gray-800 rounded-full font-bold hover:bg-gray-700 transition-colors">
View Gallery
</button>
</div>
<div class="relative">
<div class="drop-zone p-10 mb-8">
<div class="flex flex-col items-center justify-center h-64">
<i class="fas fa-cloud-upload-alt text-4xl text-primary mb-4"></i>
<h3 class="text-2xl font-bold mb-2">Drag & Drop Here</h3>
<p class="text-gray-400 mb-4">Images, text, or videos to transform</p>
<button class="px-6 py-2 bg-gray-700 rounded-full hover:bg-gray-600 transition-colors">
Or Browse Files
</button>
</div>
</div>
<div class="absolute -top-4 left-1/2 transform -translate-x-1/2 bg-gray-800 px-4 py-2 rounded-full text-sm">
Try it now - it's free!
</div>
</div>
</div>
</section>
<!-- Tools Section -->
<section class="py-16 px-6 md:px-12 bg-gray-900/50">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-4">Creative <span class="gradient-text">Tools</span></h2>
<p class="text-gray-400 text-center mb-12 max-w-2xl mx-auto">
Drag these tools onto the canvas to start creating amazing artwork with AI assistance
</p>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6 mb-16">
<div class="card p-6 text-center tool-item group hover:bg-gray-800/70 transition-all duration-300">
<div class="w-16 h-16 rounded-full bg-gradient-to-r from-primary to-secondary flex items-center justify-center mx-auto mb-4 group-hover:scale-110 transition-transform">
<i class="fas fa-image text-2xl text-white"></i>
</div>
<h3 class="font-bold text-lg mb-2 group-hover:text-white">Image Generator</h3>
<p class="text-gray-400 text-sm group-hover:text-gray-300">Create visuals from text prompts</p>
</div>
<div class="card p-6 text-center tool-item">
<div class="w-16 h-16 rounded-full bg-gradient-to-r from-primary to-secondary flex items-center justify-center mx-auto mb-4">
<i class="fas fa-text-height text-2xl text-white"></i>
</div>
<h3 class="font-bold text-lg mb-2">Text Styling</h3>
<p class="text-gray-400 text-sm">Transform text into artistic elements</p>
</div>
<div class="card p-6 text-center tool-item">
<div class="w-16 h-16 rounded-full bg-gradient-to-r from-primary to-secondary flex items-center justify-center mx-auto mb-4">
<i class="fas fa-video text-2xl text-white"></i>
</div>
<h3 class="font-bold text-lg mb-2">Video Effects</h3>
<p class="text-gray-400 text-sm">Apply AI filters to videos</p>
</div>
<div class="card p-6 text-center tool-item">
<div class="w-16 h-16 rounded-full bg-gradient-to-r from-primary to-secondary flex items-center justify-center mx-auto mb-4">
<i class="fas fa-magic text-2xl text-white"></i>
</div>
<h3 class="font-bold text-lg mb-2">Style Transfer</h3>
<p class="text-gray-400 text-sm">Apply artistic styles to your media</p>
</div>
</div>
<div class="bg-gray-800/50 rounded-2xl p-8 max-w-4xl mx-auto">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
<h3 class="text-2xl font-bold mb-4">Integrated with <span class="gradient-text">Open Router</span> & <span class="gradient-text">Fal</span></h3>
<p class="text-gray-300 mb-4">
Access the most powerful AI models through our seamless integrations. Generate stunning artwork with state-of-the-art technology.
</p>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-check-circle text-primary mr-2"></i>
<span>Real-time generation</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-primary mr-2"></i>
<span>Multiple AI models</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-primary mr-2"></i>
<span>High-resolution output</span>
</li>
</ul>
</div>
<div class="md:w-1/2 relative">
<div class="bg-gray-700 rounded-xl p-4 mb-4">
<div class="flex justify-between items-center mb-3">
<div class="flex items-center">
<div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<span class="text-sm text-gray-400">AI Model Console</span>
</div>
<div class="bg-gray-900 p-4 rounded">
<code class="text-green-400 text-sm">
$ artgen generate --prompt "surreal landscape"<br>
> Using model: fal-ai/dreamshaper<br>
> Generating high-res artwork...<br>
> Artwork generated in 4.2s
</code>
</div>
</div>
<div class="absolute -right-4 -top-4 bg-gradient-to-r from-primary to-secondary text-white px-4 py-2 rounded-full text-sm font-bold">
Powered by AI
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Gallery Section -->
<section class="py-16 px-6 md:px-12">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-4">AI-Generated <span class="gradient-text">Gallery</span></h2>
<p class="text-gray-400 text-center mb-12 max-w-2xl mx-auto">
Explore artwork created by our community using ArtGenius and AI models
</p>
<div class="artwork-grid gap-6">
<div class="generated-art rounded-xl overflow-hidden group relative">
<div class="bg-gradient-to-br from-purple-500 to-pink-500 aspect-square"></div>
<div class="p-4 bg-gray-800 group-hover:bg-gray-700 transition-colors">
<h4 class="font-bold group-hover:text-primary transition-colors">Surreal Dreamscape</h4>
<p class="text-gray-400 text-sm group-hover:text-gray-300 transition-colors">Created with Stable Diffusion</p>
</div>
<div class="absolute inset-0 bg-black/50 opacity-0 group-hover:opacity-100 flex items-center justify-center transition-opacity">
<button class="px-4 py-2 bg-primary rounded-full hover:bg-purple-700 transition-colors">
<i class="fas fa-download mr-2"></i>Download
</button>
</div>
</div>
<div class="generated-art rounded-xl overflow-hidden">
<div class="bg-gradient-to-br from-blue-400 to-teal-500 aspect-square"></div>
<div class="p-4 bg-gray-800">
<h4 class="font-bold">Oceanic Abyss</h4>
<p class="text-gray-400 text-sm">Created with Fal Model</p>
</div>
</div>
<div class="generated-art rounded-xl overflow-hidden">
<div class="bg-gradient-to-br from-yellow-400 to-red-500 aspect-square"></div>
<div class="p-4 bg-gray-800">
<h4 class="font-bold">Desert Mirage</h4>
<p class="text-gray-400 text-sm">Created with Open Router</p>
</div>
</div>
<div class="generated-art rounded-xl overflow-hidden">
<div class="bg-gradient-to-br from-green-400 to-emerald-600 aspect-square"></div>
<div class="p-4 bg-gray-800">
<h4 class="font-bold">Enchanted Forest</h4>
<p class="text-gray-400 text-sm">Created with DALL-E</p>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="px-8 py-3 bg-gradient-to-r from-primary to-secondary rounded-full font-bold hover:opacity-90 transition-opacity">
Explore Full Gallery
</button>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-24 px-6 md:px-12 bg-gradient-to-r from-primary/20 to-secondary/20">
<div class="container mx-auto text-center max-w-3xl">
<h2 class="text-4xl md:text-5xl font-bold mb-6">Start Creating <span class="gradient-text">Today</span></h2>
<p class="text-xl text-gray-300 mb-12 max-w-2xl mx-auto">
Join thousands of artists and designers transforming their creative process with AI
</p>
<div class="bg-gray-800 rounded-2xl p-8 inline-block">
<div class="flex flex-col md:flex-row items-center justify-center gap-6">
<div class="bg-white text-gray-800 font-bold px-6 py-3 rounded-full pulse">
<i class="fas fa-bolt text-yellow-500 mr-2"></i>Free Forever Plan
</div>
<div>
<p class="text-lg">No credit card required</p>
<p class="text-gray-400">Get started in seconds</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 px-6 md:px-12 border-t border-gray-800">
<div class="container mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<div class="w-8 h-8 rounded-full bg-gradient-to-r from-primary to-secondary flex items-center justify-center">
<i class="fas fa-palette text-white"></i>
</div>
<h2 class="text-xl font-bold">Art<span class="gradient-text">Genius</span></h2>
</div>
<p class="text-gray-400 mb-4">
AI-powered art creation platform for designers, artists, and creatives.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i class="fab fa-discord"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i class="fab fa-github"></i>
</a>
</div>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Product</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Features</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Integrations</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Pricing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Changelog</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Tutorials</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Community</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Subscribe</h3>
<p class="text-gray-400 mb-4">Get the latest updates and news</p>
<div class="flex">
<input type="email" placeholder="Your email" class="bg-gray-800 rounded-l-lg px-4 py-2 w-full focus:outline-none focus:ring-2 focus:ring-primary">
<button class="bg-primary rounded-r-lg px-4 hover:bg-purple-700 transition-colors">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
<p>© 2023 ArtGenius. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Drag and drop functionality
const dropZone = document.querySelector('.drop-zone');
['dragenter', 'dragover', 'dragleave', 'drop'].forEach(eventName => {
dropZone.addEventListener(eventName, preventDefaults, false);
});
function preventDefaults(e) {
e.preventDefault();
e.stopPropagation();
}
['dragenter', 'dragover'].forEach(eventName => {
dropZone.addEventListener(eventName, highlight, false);
});
['dragleave', 'drop'].forEach(eventName => {
dropZone.addEventListener(eventName, unhighlight, false);
});
function highlight() {
dropZone.classList.add('active');
}
function unhighlight() {
dropZone.classList.remove('active');
}
dropZone.addEventListener('drop', handleDrop, false);
function handleDrop(e) {
const dt = e.dataTransfer;
const files = dt.files;
if (files.length) {
processFiles(files);
}
}
function processFiles(files) {
alert(`Processing ${files.length} file(s)...\n\nThis would be sent to Open Router/Fal for AI processing in a real application.`);
// In a real app, you would upload files to your server/AI APIs here
}
// Tool drag functionality
const toolItems = document.querySelectorAll('.tool-item');
toolItems.forEach(item => {
item.setAttribute('draggable', 'true');
item.addEventListener('dragstart', (e) => {
e.dataTransfer.setData('text/plain', item.querySelector('h3').textContent);
item.classList.add('opacity-50');
});
item.addEventListener('dragend', () => {
item.classList.remove('opacity-50');
});
});
// Drop zone also accepts tools
dropZone.addEventListener('dragover', (e) => {
e.preventDefault();
});
dropZone.addEventListener('drop', (e) => {
e.preventDefault();
const toolName = e.dataTransfer.getData('text/plain');
if (toolName) {
alert(`Adding ${toolName} to canvas...`);
}
});
</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=zdhpeter/art" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |