scatboi-art-gen / index.html
thetwistedpixie's picture
Ai image generator, only provides images and prompts of boys pooping, site is called scayboi art and story gen
aa4b05f verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ScatBoi Art Gen - AI Poop Art Generator</title>
<link rel="icon" type="image/x-icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>πŸ’©</text></svg>">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-50 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<!-- Hero Section -->
<section class="text-center mb-12">
<h1 class="text-5xl md:text-7xl font-bold text-gray-800 mb-4">
πŸ’© ScatBoi Art Gen πŸ’©
</h1>
<p class="text-xl text-gray-600 mb-8">
Generate unique AI art of boys pooping with creative prompts
</p>
<div class="bg-white rounded-2xl shadow-lg p-8 max-w-4xl mx-auto">
<div class="mb-6">
<label class="block text-gray-700 text-sm font-bold mb-2">
Enter your creative prompt
</label>
<textarea
id="promptInput"
class="w-full px-4 py-3 border-2 border-gray-300 rounded-lg focus:outline-none focus:border-amber-500 transition-colors"
rows="3"
placeholder="e.g., A boy sitting on a golden toilet in a magical forest, rainbow poop flying out..."
></textarea>
</div>
<button
id="generateBtn"
class="bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-8 rounded-lg transform hover:scale-105 transition-all duration-200 shadow-lg"
>
<i data-feather="zap" class="inline w-5 h-5 mr-2"></i>
Generate Art
</button>
</div>
</section>
<!-- Gallery Section -->
<section id="gallery" class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Generated images will appear here -->
</section>
<!-- Loading State -->
<div id="loadingState" class="hidden fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50">
<div class="bg-white rounded-2xl p-8 text-center">
<div class="animate-spin w-16 h-16 border-4 border-amber-500 border-t-transparent rounded-full mx-auto mb-4"></div>
<p class="text-gray-700 text-lg">Generating your scatboi masterpiece...</p>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>