naughty-nook-nexus / index.html
thetwistedpixie's picture
Make it more cheekier and naughty
859918b verified
Raw
History Blame Contribute Delete
6.71 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Naughty Nook Nexus - Where Fun Meets Fire 🔥</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<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>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
50: '#fef2f2',
100: '#fee2e2',
200: '#fecaca',
300: '#fca5a5',
400: '#f87171',
500: '#ef4444',
600: '#dc2626',
700: '#b91c1c',
800: '#991b1b',
900: '#7f1d1d',
},
secondary: {
50: '#f8fafc',
100: '#f1f5f9',
200: '#e2e8f0',
300: '#cbd5e1',
400: '#94a3b8',
500: '#64748b',
600: '#475569',
700: '#334155',
800: '#1e293b',
900: '#0f172a',
}
}
}
}
}
</script>
</head>
<body class="bg-gradient-to-br from-primary-50 to-secondary-100 min-h-screen">
<custom-navbar></custom-navbar>
<!-- Hero Section -->
<section class="relative h-screen flex items-center justify-center overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-r from-primary-500/20 to-secondary-500/20"></div>
<div class="relative z-10 text-center px-4 max-w-4xl">
<h1 class="text-5xl md:text-7xl font-bold text-primary-700 mb-6 animate-pulse">
Ready to Get <span class="text-secondary-600">Naughty</span>?
</h1>
<p class="text-xl md:text-2xl text-secondary-600 mb-8 leading-relaxed">
Where curious souls connect and sparks fly. Find your next adventure in the most playful corners of the web.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a href="/register" class="bg-primary-500 hover:bg-primary-600 text-white px-8 py-4 rounded-full font-bold text-lg transform hover:scale-105 transition-all duration-300 shadow-lg">
Start Your Adventure
</a>
<a href="/login" class="border-2 border-primary-500 text-primary-500 hover:bg-primary-500 hover:text-white px-8 py-4 rounded-full font-bold text-lg transform hover:scale-105 transition-all duration-300">
Already a Member?
</a>
</div>
</div>
<div class="absolute bottom-0 left-0 right-0 h-32 bg-gradient-to-t from-white to-transparent"></div>
</section>
<!-- Features Section -->
<section class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4">
<h2 class="text-4xl font-bold text-center text-secondary-800 mb-16">
What Makes Us <span class="text-primary-500">Tick</span>?
</h2>
<div class="grid md:grid-cols-3 gap-8">
<div class="text-center p-8 rounded-2xl hover:shadow-xl transition-all duration-300">
<div class="w-20 h-20 bg-primary-100 rounded-full flex items-center justify-center mx-auto mb-6">
<i data-feather="map-pin" class="text-primary-500"></i>
</div>
<h3 class="text-2xl font-bold text-secondary-700 mb-4">Hidden Hotspots</h3>
<p class="text-secondary-600 leading-relaxed">
Discover the most thrilling spots where adventure awaits. From cozy corners to wild encounters.
</p>
</div>
<div class="text-center p-8 rounded-2xl hover:shadow-xl transition-all duration-300">
<div class="w-20 h-20 bg-primary-100 rounded-full flex items-center justify-center mx-auto mb-6">
<i data-feather="users" class="text-primary-500"></i>
</div>
<h3 class="text-2xl font-bold text-secondary-700 mb-4">Playful Community</h3>
<p class="text-secondary-600 leading-relaxed">
Connect with like-minded explorers who know how to have a good time. No judgments, just fun.
</p>
</div>
<div class="text-center p-8 rounded-2xl hover:shadow-xl transition-all duration-300">
<div class="w-20 h-20 bg-primary-100 rounded-full flex items-center justify-center mx-auto mb-6">
<i data-feather="smartphone" class="text-primary-500"></i>
</div>
<h3 class="text-2xl font-bold text-secondary-700 mb-4">Instant Connections</h3>
<p class="text-secondary-600 leading-relaxed">
Your next adventure is just a tap away. Mobile-friendly and ready when you are.
</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-gradient-to-r from-primary-500 to-secondary-500">
<div class="max-w-4xl mx-auto text-center px-4">
<h2 class="text-4xl font-bold text-white mb-6">
Don't Be Shy - Your Next Adventure Awaits
</h2>
<p class="text-xl text-primary-100 mb-8">
Join thousands of playful souls discovering new connections every day.
</p>
<a href="/register" class="bg-white text-primary-500 hover:text-primary-600 px-8 py-4 rounded-full font-bold text-lg inline-block transform hover:scale-105 transition-all duration-300">
Get Started - It's Free!
</a>
</div>
</section>
<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>