hmaras's picture
remove changes
017a2d8 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dandifo | Scientific Toon Optimization</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#3B82F6',
secondary: '#10B981',
dark: '#1F2937',
light: '#F3F4F6'
}
}
}
}
</script>
</head>
<body class="bg-light text-dark">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<!-- Hero Section -->
<section class="text-center py-16">
<h1 class="text-5xl font-bold mb-4 text-primary">Dandifo</h1>
<p class="text-xl mb-8 max-w-2xl mx-auto text-secondary">Scientific optimization for maximum Toon efficiency in Dandy's World</p>
<div class="flex justify-center gap-4">
<a href="/tier-list.html" class="bg-primary hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition">View Tier List</a>
<a href="/build-calculator.html" class="bg-secondary hover:bg-emerald-600 text-white px-6 py-3 rounded-lg font-medium transition">Build Calculator</a>
</div>
</section>
<!-- Value Propositions -->
<section class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-16">
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="w-12 h-12 bg-primary/10 text-primary rounded-full flex items-center justify-center mb-4">
<i data-feather="target"></i>
</div>
<h3 class="text-lg font-semibold mb-2">Strategic Differentiation</h3>
<p class="text-gray-600">Specialized analysis for specific roles like Ichor Maximization and Research Acceleration.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="w-12 h-12 bg-secondary/10 text-secondary rounded-full flex items-center justify-center mb-4">
<i data-feather="bar-chart-2"></i>
</div>
<h3 class="text-lg font-semibold mb-2">Data-Driven Decisions</h3>
<p class="text-gray-600">Technical justifications with structured tables for optimal Trinket combinations.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="w-12 h-12 bg-primary/10 text-primary rounded-full flex items-center justify-center mb-4">
<i data-feather="users"></i>
</div>
<h3 class="text-lg font-semibold mb-2">Community Integration</h3>
<p class="text-gray-600">Interactive elements including polls and personalized combination submissions.</p>
</div>
</section>
<!-- Main Characters Spotlight -->
<section class="mb-16">
<h2 class="text-3xl font-bold mb-8 text-center">Main Character Focus</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="bg-white rounded-xl overflow-hidden shadow-md">
<img src="https://huggingface.co/deepsite/_next/image?url=https%3A%2F%2Fhuggingface.co%2Fspaces%2Fhmaras%2Fdandy-s-meta-mastermind%2Fresolve%2Fmain%2Fimages%2FPebble_Render.webp&w=96&q=75" alt="Pebble" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Pebble</h3>
<p class="text-gray-600 mb-4">High-value specialized stats for solo play and ichor farming.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-primary/10 text-primary px-3 py-1 rounded-full text-sm">S-tier</span>
<span class="bg-secondary/10 text-secondary px-3 py-1 rounded-full text-sm">Ichor Focus</span>
</div>
</div>
</div>
<div class="bg-white rounded-xl overflow-hidden shadow-md">
<img src="https://huggingface.co/deepsite/_next/image?url=https%3A%2F%2Fhuggingface.co%2Fspaces%2Fhmaras%2Fdandy-s-meta-mastermind%2Fresolve%2Fmain%2Fimages%2Fdownload.jpg&w=96&q=75" alt="Sprout" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Sprout</h3>
<p class="text-gray-600 mb-4">Requires Cosmo Mastery Quests for unlock. Excellent for research.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-primary/10 text-primary px-3 py-1 rounded-full text-sm">A-tier</span>
<span class="bg-secondary/10 text-secondary px-3 py-1 rounded-full text-sm">Research Focus</span>
</div>
</div>
</div>
<div class="bg-white rounded-xl overflow-hidden shadow-md">
<img src="http://static.photos/gaming/640x360/3" alt="Vee" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Vee</h3>
<p class="text-gray-600 mb-4">Top-tier with Remote + Magnifying Glass for highest raw output.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-primary/10 text-primary px-3 py-1 rounded-full text-sm">S-tier</span>
<span class="bg-secondary/10 text-secondary px-3 py-1 rounded-full text-sm">Max Output</span>
</div>
</div>
</div>
</div>
</section>
</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>