business-plan / index.html
Jason4Cheese's picture
Add 3 files
5ff9c26 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sarcastic Serenity POD Business Builder | Just Creative Solutions</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, #f6d365 0%, #fda085 100%);
}
.y2k-text {
font-family: 'Impact', sans-serif;
text-shadow: 3px 3px 0 #ff00ff, -1px -1px 0 #00ffff;
color: #000;
}
.trend-card:hover {
transform: scale(1.03);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.progress-step.active {
background-color: #4f46e5;
color: white;
}
.progress-step.completed {
background-color: #10b981;
color: white;
}
.quote-card {
background: white;
border-left: 5px solid #f59e0b;
transition: all 0.3s ease;
}
.quote-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.drawing-area {
border: 2px dashed #ccc;
background-color: #f9fafb;
}
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 200px;
background-color: #333;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -100px;
opacity: 0;
transition: opacity 0.3s;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
.floating {
animation: float 3s ease-in-out infinite;
}
</style>
</head>
<body class="bg-gray-50">
<!-- Header -->
<header class="gradient-bg text-white py-6 px-4 shadow-lg">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center">
<i class="fas fa-robot text-3xl mr-3 floating"></i>
<h1 class="y2k-text text-3xl md:text-4xl font-bold">Sarcastic Serenity POD</h1>
</div>
<div class="hidden md:flex space-x-4">
<a href="#dashboard" class="hover:text-yellow-200 transition">Dashboard</a>
<a href="#trends" class="hover:text-yellow-200 transition">Trends</a>
<a href="#plan" class="hover:text-yellow-200 transition">Business Plan</a>
<a href="#design" class="hover:text-yellow-200 transition">Design Studio</a>
</div>
<button class="md:hidden text-2xl">
<i class="fas fa-bars"></i>
</button>
</div>
</header>
<!-- Main Content -->
<main class="container mx-auto px-4 py-8">
<!-- Dashboard Section -->
<section id="dashboard" class="mb-16">
<div class="bg-white rounded-xl shadow-md p-6 mb-8">
<h2 class="text-2xl font-bold text-gray-800 mb-4">Welcome to Your POD Business Builder</h2>
<p class="text-gray-600 mb-6">This step-by-step guide will help you launch a lucrative print-on-demand business with zero upfront costs, targeting Gen Z with Y2K aesthetic and sarcastic humor.</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-6">
<div class="bg-indigo-50 p-4 rounded-lg border border-indigo-100">
<h3 class="font-semibold text-indigo-800 mb-2">Current Progress</h3>
<div class="h-2 bg-gray-200 rounded-full mb-2">
<div class="h-2 bg-indigo-600 rounded-full" style="width: 15%"></div>
</div>
<p class="text-sm text-gray-600">3 of 20 steps completed</p>
</div>
<div class="bg-green-50 p-4 rounded-lg border border-green-100">
<h3 class="font-semibold text-green-800 mb-2">Today's Trend Score</h3>
<p class="text-2xl font-bold text-green-600">87/100</p>
<p class="text-sm text-gray-600">Excellent day for sarcastic Y2K designs</p>
</div>
<div class="bg-yellow-50 p-4 rounded-lg border border-yellow-100">
<h3 class="font-semibold text-yellow-800 mb-2">Quick Actions</h3>
<div class="flex space-x-2">
<button class="bg-yellow-500 text-white px-3 py-1 rounded text-sm hover:bg-yellow-600 transition">Generate Quote</button>
<button class="bg-indigo-500 text-white px-3 py-1 rounded text-sm hover:bg-indigo-600 transition">Check Trends</button>
</div>
</div>
</div>
<div class="bg-blue-50 border border-blue-200 rounded-lg p-4">
<h3 class="font-semibold text-blue-800 mb-2">Today's Motivation from JDog</h3>
<p class="italic text-blue-700">"The market is saturated with basic designs. Your edge? Combine nostalgic Y2K with savage Gen Z humor. Make them laugh while they swipe."</p>
</div>
</div>
</section>
<!-- Trends Section -->
<section id="trends" class="mb-16">
<div class="bg-white rounded-xl shadow-md p-6">
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold text-gray-800">Trend Analysis & AI Recommendations</h2>
<button class="bg-purple-600 text-white px-4 py-2 rounded-lg hover:bg-purple-700 transition flex items-center">
<i class="fas fa-sync-alt mr-2"></i> Refresh Trends
</button>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-8">
<div class="trend-card bg-pink-50 p-4 rounded-lg border border-pink-200 transition cursor-pointer">
<div class="flex items-center mb-2">
<span class="bg-pink-500 text-white text-xs px-2 py-1 rounded-full mr-2">HOT</span>
<span class="text-xs text-gray-500">Google Trends +42%</span>
</div>
<h3 class="font-bold text-pink-800">"I'm not lazy, I'm in energy-saving mode"</h3>
<p class="text-sm text-gray-600 mt-2">Sarcastic productivity quotes trending with Y2K aesthetic</p>
<div class="mt-3 flex justify-between items-center">
<span class="text-xs bg-pink-100 text-pink-800 px-2 py-1 rounded">#GenZHumor</span>
<button class="text-pink-600 hover:text-pink-800">
<i class="fas fa-plus-circle"></i> Add to Ideas
</button>
</div>
</div>
<div class="trend-card bg-blue-50 p-4 rounded-lg border border-blue-200 transition cursor-pointer">
<div class="flex items-center mb-2">
<span class="bg-blue-500 text-white text-xs px-2 py-1 rounded-full mr-2">NEW</span>
<span class="text-xs text-gray-500">TikTok 1.2M views</span>
</div>
<h3 class="font-bold text-blue-800">"Error 404: Motivation not found"</h3>
<p class="text-sm text-gray-600 mt-2">Tech-error style humor with retro computer graphics</p>
<div class="mt-3 flex justify-between items-center">
<span class="text-xs bg-blue-100 text-blue-800 px-2 py-1 rounded">#Y2KAesthetic</span>
<button class="text-blue-600 hover:text-blue-800">
<i class="fas fa-plus-circle"></i> Add to Ideas
</button>
</div>
</div>
<div class="trend-card bg-green-50 p-4 rounded-lg border border-green-200 transition cursor-pointer">
<div class="flex items-center mb-2">
<span class="bg-green-500 text-white text-xs px-2 py-1 rounded-full mr-2">RISING</span>
<span class="text-xs text-gray-500">Instagram +68%</span>
</div>
<h3 class="font-bold text-green-800">"My social battery died in 1999"</h3>
<p class="text-sm text-gray-600 mt-2">Combining retro tech with modern introvert humor</p>
<div class="mt-3 flex justify-between items-center">
<span class="text-xs bg-green-100 text-green-800 px-2 py-1 rounded">#Relatable</span>
<button class="text-green-600 hover:text-green-800">
<i class="fas fa-plus-circle"></i> Add to Ideas
</button>
</div>
</div>
</div>
<div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
<h3 class="font-semibold text-gray-800 mb-3">AI Trend Customizer</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Humor Style</label>
<select class="w-full rounded border-gray-300 focus:border-indigo-500 focus:ring-indigo-500">
<option>Sarcastic</option>
<option>Self-Deprecating</option>
<option>Dark Humor</option>
<option>Puns</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Aesthetic</label>
<select class="w-full rounded border-gray-300 focus:border-indigo-500 focus:ring-indigo-500">
<option>Y2K Retro</option>
<option>90s Grunge</option>
<option>Early Internet</option>
<option>Psychedelic</option>
</select>
</div>
</div>
<button class="mt-4 bg-indigo-600 text-white px-4 py-2 rounded-lg hover:bg-indigo-700 transition">
Generate Custom Trend Ideas
</button>
</div>
</div>
</section>
<!-- Business Plan Section -->
<section id="plan" class="mb-16">
<div class="bg-white rounded-xl shadow-md p-6">
<h2 class="text-2xl font-bold text-gray-800 mb-6">Zero-Cost Startup Business Plan</h2>
<div class="flex overflow-x-auto pb-4 mb-6">
<div class="flex space-x-2">
<div class="progress-step active px-4 py-2 rounded-full border border-indigo-300">1. Niche</div>
<div class="progress-step px-4 py-2 rounded-full border border-gray-300">2. Research</div>
<div class="progress-step px-4 py-2 rounded-full border border-gray-300">3. Branding</div>
<div class="progress-step px-4 py-2 rounded-full border border-gray-300">4. Designs</div>
<div class="progress-step px-4 py-2 rounded-full border border-gray-300">5. Platform</div>
<div class="progress-step px-4 py-2 rounded-full border border-gray-300">6. Listings</div>
<div class="progress-step px-4 py-2 rounded-full border border-gray-300">7. Marketing</div>
</div>
</div>
<div class="mb-8">
<h3 class="text-xl font-semibold text-gray-800 mb-4">Step 1: Cornering Your Niche</h3>
<div class="bg-yellow-50 border-l-4 border-yellow-400 p-4 mb-4">
<p class="text-yellow-800 font-medium">Pro Tip from JDog:</p>
<p>"Don't just do 'funny shirts' - combine Y2K nostalgia with Gen Z burnout humor. Example: 'My Tamagotchi outlived my will to live' on a glitter background."</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="bg-gray-50 p-4 rounded-lg">
<h4 class="font-medium text-gray-800 mb-2">Niche Combination Formula</h4>
<p class="text-sm text-gray-600 mb-3">Combine these elements for a unique angle:</p>
<ul class="list-disc pl-5 text-sm space-y-1">
<li>Y2K aesthetic (glitter, neon, pixel art)</li>
<li>Gen Z humor (self-deprecating, ironic)</li>
<li>Current pop culture references</li>
<li>Nostalgic tech (Tamagotchi, dial-up)</li>
</ul>
</div>
<div class="bg-gray-50 p-4 rounded-lg">
<h4 class="font-medium text-gray-800 mb-2">Niche Validation Checklist</h4>
<div class="space-y-3">
<div class="flex items-start">
<input type="checkbox" class="mt-1 mr-2" id="check1">
<label for="check1" class="text-sm">At least 3 trending hashtags related to niche</label>
</div>
<div class="flex items-start">
<input type="checkbox" class="mt-1 mr-2" id="check2">
<label for="check2" class="text-sm">Available merch in this style is under 100 designs</label>
</div>
<div class="flex items-start">
<input type="checkbox" class="mt-1 mr-2" id="check3">
<label for="check3" class="text-sm">You can name 3 influencers in this space</label>
</div>
</div>
<button class="mt-3 bg-green-600 text-white px-3 py-1 rounded text-sm hover:bg-green-700 transition">
Validate My Niche
</button>
</div>
</div>
</div>
<div class="border-t pt-6">
<h3 class="text-xl font-semibold text-gray-800 mb-4">Step 2: Market Research (Zero-Cost Methods)</h3>
<div class="bg-blue-50 border-l-4 border-blue-400 p-4 mb-4">
<p class="text-blue-800 font-medium">Sarcastic Serenity Method:</p>
<p>"Steal like an artist. Not the designs, but the engagement tactics. Find what's working for similar accounts and put your unique spin on it."</p>
</div>
<div class="space-y-4">
<div class="p-4 border rounded-lg">
<h4 class="font-medium flex items-center">
<span class="w-6 h-6 bg-blue-500 text-white rounded-full flex items-center justify-center mr-2">1</span>
TikTok Hashtag Research
</h4>
<p class="text-sm text-gray-600 mt-1">Search these hashtags and note which videos get 10k+ likes:</p>
<div class="mt-2 flex flex-wrap gap-2">
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded-full text-xs">#Y2Khumor</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded-full text-xs">#GenZproblems</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded-full text-xs">#2000skids</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded-full text-xs">#nostalgicmemes</span>
</div>
</div>
<div class="p-4 border rounded-lg">
<h4 class="font-medium flex items-center">
<span class="w-6 h-6 bg-blue-500 text-white rounded-full flex items-center justify-center mr-2">2</span>
Instagram Competitor Analysis
</h4>
<p class="text-sm text-gray-600 mt-1">Find 3 accounts with 10k-50k followers in your niche and analyze:</p>
<ul class="list-disc pl-5 text-sm space-y-1 mt-2">
<li>Which posts get most comments?</li>
<li>What design styles are they using?</li>
<li>How do they write captions?</li>
</ul>
</div>
<div class="p-4 border rounded-lg">
<h4 class="font-medium flex items-center">
<span class="w-6 h-6 bg-blue-500 text-white rounded-full flex items-center justify-center mr-2">3</span>
Free Google Trends Validation
</h4>
<div class="mt-2">
<div class="flex items-center mb-2">
<input type="text" placeholder="Enter your niche keyword" class="flex-1 rounded-l border-gray-300 focus:border-indigo-500">
<button class="bg-indigo-600 text-white px-3 py-2 rounded-r hover:bg-indigo-700">Check</button>
</div>
<p class="text-xs text-gray-500">Example: "Y2K humor shirts"</p>
</div>
</div>
</div>
</div>
<div class="mt-6 bg-purple-50 border border-purple-200 rounded-lg p-4">
<h4 class="font-medium text-purple-800 mb-2">Ready for Step 3?</h4>
<p class="text-sm text-purple-700 mb-3">Complete all research tasks to unlock Branding Guide</p>
<button class="bg-purple-600 text-white px-4 py-2 rounded-lg hover:bg-purple-700 transition disabled:opacity-50" disabled>
Continue to Branding Guide (Complete Steps First)
</button>
</div>
</div>
</section>
<!-- Design Studio Section -->
<section id="design" class="mb-16">
<div class="bg-white rounded-xl shadow-md p-6">
<h2 class="text-2xl font-bold text-gray-800 mb-6">Y2K Design Studio</h2>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6">
<div class="lg:col-span-2">
<div class="drawing-area rounded-lg p-4 mb-4" style="height: 400px;">
<!-- This would be a canvas element in a real app -->
<div class="flex items-center justify-center h-full text-gray-400">
<p>Design canvas will appear here</p>
</div>
</div>
<div class="grid grid-cols-4 gap-2 mb-4">
<button class="p-2 border rounded hover:bg-gray-100 tooltip">
<i class="fas fa-font"></i>
<span class="tooltiptext">Add Y2K Style Text</span>
</button>
<button class="p-2 border rounded hover:bg-gray-100 tooltip">
<i class="fas fa-image"></i>
<span class="tooltiptext">Add Retro Clipart</span>
</button>
<button class="p-2 border rounded hover:bg-gray-100 tooltip">
<i class="fas fa-palette"></i>
<span class="tooltiptext">Gradient Tool</span>
</button>
<button class="p-2 border rounded hover:bg-gray-100 tooltip">
<i class="fas fa-glitter"></i>
<span class="tooltiptext">Add Glitter Effect</span>
</button>
</div>
</div>
<div>
<div class="bg-gray-50 p-4 rounded-lg border border-gray-200 mb-4">
<h3 class="font-medium text-gray-800 mb-3">Design Elements</h3>
<div class="space-y-3">
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Text</label>
<input type="text" placeholder="Enter sarcastic quote" class="w-full rounded border-gray-300">
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Font</label>
<select class="w-full rounded border-gray-300">
<option>Y2K Pixel</option>
<option>90s Comic Sans</option>
<option>Retro Computer</option>
<option>Grunge</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Color Scheme</label>
<div class="flex space-x-2">
<div class="w-6 h-6 rounded-full bg-pink-500 border-2 border-white shadow"></div>
<div class="w-6 h-6 rounded-full bg-blue-500 border-2 border-white shadow"></div>
<div class="w-6 h-6 rounded-full bg-purple-500 border-2 border-white shadow"></div>
<div class="w-6 h-6 rounded-full bg-yellow-500 border-2 border-white shadow"></div>
</div>
</div>
</div>
</div>
<div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
<h3 class="font-medium text-gray-800 mb-3">AI Design Assistant</h3>
<div class="mb-3">
<label class="block text-sm font-medium text-gray-700 mb-1">Mood</label>
<select class="w-full rounded border-gray-300">
<option>Sarcastic</option>
<option>Ironic</option>
<option>Nostalgic</option>
<option>Dark Humor</option>
</select>
</div>
<button class="w-full bg-indigo-600 text-white py-2 rounded-lg hover:bg-indigo-700 transition">
Generate Design Concept
</button>
<div class="mt-3 p-2 bg-indigo-50 rounded border border-indigo-100">
<p class="text-xs text-indigo-800">AI Suggestion: Try "My therapist said I need more glitter" with a Lisa Frank-esque rainbow background</p>
</div>
</div>
</div>
</div>
<div class="mt-6 bg-green-50 border border-green-200 rounded-lg p-4">
<h3 class="font-medium text-green-800 mb-2">Design Validation Checklist</h3>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<div class="flex items-start">
<input type="checkbox" class="mt-1 mr-2" id="designCheck1">
<label for="designCheck1" class="text-sm">Readable at thumbnail size</label>
</div>
<div class="flex items-start">
<input type="checkbox" class="mt-1 mr-2" id="designCheck2">
<label for="designCheck2" class="text-sm">Uses trending colors</label>
</div>
<div class="flex items-start">
<input type="checkbox" class="mt-1 mr-2" id="designCheck3">
<label for="designCheck3" class="text-sm">Makes you smirk</label>
</div>
</div>
<button class="mt-4 bg-green-600 text-white px-4 py-2 rounded-lg hover:bg-green-700 transition">
Save to My Designs
</button>
</div>
</div>
</section>
<!-- Success Stories -->
<section class="mb-16">
<div class="bg-white rounded-xl shadow-md p-6">
<h2 class="text-2xl font-bold text-gray-800 mb-6">Success Stories Using This Method</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="border rounded-lg p-4 hover:shadow-md transition">
<div class="flex items-center mb-3">
<div class="w-10 h-10 bg-purple-500 rounded-full flex items-center justify-center text-white mr-3">JD</div>
<div>
<h4 class="font-medium">Jason D. (Just Creative Solutions)</h4>
<p class="text-xs text-gray-500">@SarcasticSerenity</p>
</div>
</div>
<p class="text-sm text-gray-700 mb-3">"Started with $0, now making $8k/month selling Y2K burnout humor shirts. Key was combining nostalgic elements with Gen Z sarcasm."</p>
<div class="flex justify-between text-xs text-gray-500">
<span>6 months in</span>
<span>Top design: "My Tamagotchi had more friends than me"</span>
</div>
</div>
<div class="border rounded-lg p-4 hover:shadow-md transition">
<div class="flex items-center mb-3">
<div class="w-10 h-10 bg-pink-500 rounded-full flex items-center justify-center text-white mr-3">AM</div>
<div>
<h4 class="font-medium">Alex M.</h4>
<p class="text-xs text-gray-500">@Y2KTraumaDump</p>
</div>
</div>
<p class="text-sm text-gray-700 mb-3">"Followed the niche formula exactly - dark humor + Lisa Frank colors. First $100 day in week 3. Now scaling to other products."</p>
<div class="flex justify-between text-xs text-gray-500">
<span>3 months in</span>
<span>Top design: "My childhood trauma is vintage now"</span>
</div>
</div>
</div>
<div class="mt-6 bg-yellow-50 border border-yellow-200 rounded-lg p-4">
<h3 class="font-medium text-yellow-800 mb-2">Ready to Start Your Journey?</h3>
<p class="text-sm text-yellow-700 mb-3">Get the complete Sarcastic Serenity Business Plan PDF</p>
<button class="bg-yellow-600 text-white px-4 py-2 rounded-lg hover:bg-yellow-700 transition flex items-center">
<i class="fas fa-download mr-2"></i> Download Full Guide
</button>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8 px-4">
<div class="container mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-semibold mb-4">Sarcastic Serenity</h3>
<p class="text-sm text-gray-400">A Just Creative Solutions product by Jason Christian (JDog)</p>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Resources</h3>
<ul class="space-y-2 text-sm text-gray-400">
<li><a href="#" class="hover:text-white transition">Business Plan</a></li>
<li><a href="#" class="hover:text-white transition">Design Templates</a></li>
<li><a href="#" class="hover:text-white transition">Trend Reports</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Community</h3>
<ul class="space-y-2 text-sm text-gray-400">
<li><a href="#" class="hover:text-white transition">Facebook Group</a></li>
<li><a href="#" class="hover:text-white transition">Discord</a></li>
<li><a href="#" class="hover:text-white transition">Success Stories</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Connect</h3>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-tiktok"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram"></i></a>
<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-youtube"></i></a>
</div>
<p class="text-xs text-gray-500 mt-4">© 2023 Just Creative Solutions. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<script>
// Simple script for demo purposes
document.addEventListener('DOMContentLoaded', function() {
// Tooltip functionality
const tooltips = document.querySelectorAll('.tooltip');
tooltips.forEach(tooltip => {
tooltip.addEventListener('mouseenter', function() {
const tooltipText = this.querySelector('.tooltiptext');
tooltipText.style.visibility = 'visible';
tooltipText.style.opacity = '1';
});
tooltip.addEventListener('mouseleave', function() {
const tooltipText = this.querySelector('.tooltiptext');
tooltipText.style.visibility = 'hidden';
tooltipText.style.opacity = '0';
});
});
// Progress steps
const steps = document.querySelectorAll('.progress-step');
steps.forEach((step, index) => {
step.addEventListener('click', function() {
steps.forEach(s => s.classList.remove('active'));
for (let i = 0; i <= index; i++) {
steps[i].classList.add('completed');
if (i === index) steps[i].classList.add('active');
}
});
});
// Generate quote button
const generateQuoteBtn = document.querySelector('#generateQuote');
if (generateQuoteBtn) {
generateQuoteBtn.addEventListener('click', function() {
const quotes = [
'"My social battery is permanently on 1%"',
'"I peaked in middle school computer lab"',
'"My therapist said I need more glitter"',
'"My will to live is out of stock"',
'"I was born to be a background character"'
];
const randomQuote = quotes[Math.floor(Math.random() * quotes.length)];
alert("AI Generated Quote:\n" + randomQuote + "\n\nAdd this to your designs?");
});
}
});
</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=Jason4Cheese/business-plan" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>