dxn1-crypto-nexus / index.html
dodey917's picture
Change the website function what to do with it and i want you toi do what you like the website to be as anything you want i give you full permpermission to do it
f261c3e verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nexus Creative Studio - Digital Art & Interactive Media</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>
</head>
<body class="bg-gray-900 min-h-screen overflow-x-hidden">
<!-- Navigation Component -->
<crypto-navbar></crypto-navbar>
<!-- Hero Section -->
<section class="relative min-h-screen flex items-center justify-center overflow-hidden">
<!-- Background Animation Canvas -->
<canvas id="networkCanvas" class="absolute inset-0 w-full h-full"></canvas>
<!-- Hero Content -->
<div class="relative z-10 text-center px-4 max-w-4xl mx-auto">
<h1 class="text-6xl md:text-8xl font-bold text-white mb-6">
NEXUS
</h1>
<p class="text-xl md:text-2xl text-purple-300 mb-8">
Creative Studio & Digital Art Collective
</p>
<p class="text-lg text-gray-300 mb-12 max-w-2xl mx-auto">
Where imagination meets technology. We create immersive digital experiences,
stunning visual art, and interactive media that captivates and inspires.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<button class="bg-purple-600 hover:bg-purple-700 text-white px-8 py-4 rounded-lg font-semibold transition-all duration-300 transform hover:scale-105">
View Portfolio
</button>
<button class="border-2 border-purple-500 text-purple-400 hover:bg-purple-500 hover:text-white px-8 py-4 rounded-lg font-semibold transition-all duration-300">
Our Work
</button>
</div>
</div>
</section>
<!-- Creative Showcase Section -->
<section class="py-20 px-4" id="portfolio">
<div class="max-w-6xl mx-auto">
<h2 class="text-4xl md:text-5xl font-bold text-white text-center mb-16">
Our Creative Magic
</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gradient-to-br from-purple-900 to-indigo-900 rounded-xl p-8 hover:transform hover:scale-105 transition-all duration-300 border border-purple-500/20">
<div class="text-purple-400 mb-4">
<i data-feather="palette" class="w-12 h-12"></i>
</div>
<h3 class="text-2xl font-bold text-white mb-4">Digital Art</h3>
<p class="text-gray-300">Breathtaking visual narratives, surreal landscapes, and abstract compositions that push creative boundaries.</p>
</div>
<div class="bg-gradient-to-br from-blue-900 to-cyan-900 rounded-xl p-8 hover:transform hover:scale-105 transition-all duration-300 border border-blue-500/20">
<div class="text-blue-400 mb-4">
<i data-feather="cpu" class="w-12 h-12"></i>
</div>
<h3 class="text-2xl font-bold text-white mb-4">Interactive Media</h3>
<p class="text-gray-300">Immersive web experiences, interactive installations, and responsive digital environments.</p>
</div>
<div class="bg-gradient-to-br from-pink-900 to-red-900 rounded-xl p-8 hover:transform hover:scale-105 transition-all duration-300 border border-pink-500/20">
<div class="text-pink-400 mb-4">
<i data-feather="film" class="w-12 h-12"></i>
</div>
<h3 class="text-2xl font-bold text-white mb-4">Motion Design</h3>
<p class="text-gray-300">Dynamic animations, cinematic sequences, and visual storytelling that brings ideas to life.</p>
</div>
</div>
</div>
</section>
<!-- Gallery Preview Section -->
<section class="py-20 px-4 bg-gray-800/50">
<div class="max-w-6xl mx-auto">
<h2 class="text-4xl md:text-5xl font-bold text-white text-center mb-16">
Featured Works
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="relative group overflow-hidden rounded-xl bg-gradient-to-br from-purple-600 to-pink-600 h-64">
<div class="absolute inset-0 bg-black/30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<span class="text-white font-semibold">Neon Dreams</span>
</div>
</div>
<div class="relative group overflow-hidden rounded-xl bg-gradient-to-br from-blue-600 to-cyan-600 h-64">
<div class="absolute inset-0 bg-black/30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<span class="text-white font-semibold">Digital Horizons</span>
</div>
</div>
<div class="relative group overflow-hidden rounded-xl bg-gradient-to-br from-green-600 to-emerald-600 h-64">
<div class="absolute inset-0 bg-black/30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<span class="text-white font-semibold">Nature Code</span>
</div>
</div>
<div class="relative group overflow-hidden rounded-xl bg-gradient-to-br from-orange-600 to-red-600 h-64">
<div class="absolute inset-0 bg-black/30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<span class="text-white font-semibold">Urban Pulse</span>
</div>
</div>
<div class="relative group overflow-hidden rounded-xl bg-gradient-to-br from-indigo-600 to-purple-600 h-64">
<div class="absolute inset-0 bg-black/30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<span class="text-white font-semibold">Cosmic Dance</span>
</div>
</div>
<div class="relative group overflow-hidden rounded-xl bg-gradient-to-br from-teal-600 to-blue-600 h-64">
<div class="absolute inset-0 bg-black/30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<span class="text-white font-semibold">Liquid Thoughts</span>
</div>
</div>
</div>
</div>
</section>
<!-- Footer Component -->
<crypto-footer></crypto-footer>
<!-- Web Components -->
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<!-- Main Script -->
<script src="script.js"></script>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>