cyberglow-noir / about.html
TyphoidComa's picture
Fix all errors
a5f50f3 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | CyberGlow Noir</title>
<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://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
</head>
<body class="bg-darkbg text-white min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-grow">
<div id="vanta-bg" class="absolute inset-0 -z-10"></div>
<section class="container mx-auto px-4 py-32 relative z-10">
<div class="max-w-4xl mx-auto text-center">
<h1 class="text-5xl md:text-7xl font-bold mb-6">ABOUT <span class="text-cyberyellow">US</span></h1>
<p class="text-xl md:text-2xl mb-10">The minds behind the <span class="text-cyberyellow font-bold">neon revolution</span></p>
</div>
</section>
<section class="container mx-auto px-4 pb-20 relative z-10">
<div class="max-w-6xl mx-auto bg-darkcard rounded-xl p-10 border border-gray-800 glow-box">
<div class="flex flex-col md:flex-row items-center gap-12">
<div class="flex-1">
<img src="http://static.photos/technology/640x360/69" alt="Cyber tech" class="rounded-lg shadow-lg shadow-cyberyellow/20 w-full">
</div>
<div class="flex-1">
<h2 class="text-3xl font-bold mb-6">Our <span class="text-cyberyellow">Mission</span></h2>
<p class="text-gray-400 mb-6">We're a collective of designers and developers obsessed with the intersection of cyberpunk aesthetics and modern web technology. Our goal is to create digital experiences that feel like they're straight out of a William Gibson novel.</p>
<p class="text-gray-400 mb-6">Founded in 2024, CyberGlow Noir has been pushing boundaries in dark mode design, with our signature high-visibility yellow accents that cut through the digital darkness like a neon sign in a rainy alley.</p>
<div class="grid grid-cols-2 gap-4 mb-8">
<div class="p-4 border border-gray-800 rounded-lg">
<div class="text-cyberyellow text-2xl font-bold mb-2">100+</div>
<div class="text-sm text-gray-400">Projects Completed</div>
</div>
<div class="p-4 border border-gray-800 rounded-lg">
<div class="text-cyberyellow text-2xl font-bold mb-2">24/7</div>
<div class="text-sm text-gray-400">Cyber Support</div>
</div>
</div>
<a href="#contact" class="inline-block border-2 border-cyberyellow text-cyberyellow font-bold px-6 py-3 rounded-full hover:bg-cyberyellow hover:text-black transition-all">
CONTACT US
</a>
</div>
</div>
</div>
</section>
<section class="container mx-auto px-4 py-20 relative z-10">
<div class="max-w-4xl mx-auto text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">The <span class="text-cyberyellow">Team</span></h2>
<p class="text-gray-400">Visionaries who see in the dark</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-darkcard p-8 rounded-xl border border-gray-800 hover:border-cyberyellow transition-all group text-center">
<div class="w-32 h-32 mx-auto mb-6 rounded-full bg-gray-800 overflow-hidden border-2 border-gray-700 group-hover:border-cyberyellow transition-all">
<img src="http://static.photos/people/320x240/101" alt="Team member" class="w-full h-full object-cover">
</div>
<h3 class="text-2xl font-bold mb-2">NEO</h3>
<p class="text-cyberyellow mb-4">Lead Designer</p>
<p class="text-gray-400 group-hover:text-white">Creates interfaces that feel like hacking the matrix.</p>
</div>
<div class="bg-darkcard p-8 rounded-xl border border-gray-800 hover:border-cyberyellow transition-all group text-center">
<div class="w-32 h-32 mx-auto mb-6 rounded-full bg-gray-800 overflow-hidden border-2 border-gray-700 group-hover:border-cyberyellow transition-all">
<img src="http://static.photos/people/320x240/102" alt="Team member" class="w-full h-full object-cover">
</div>
<h3 class="text-2xl font-bold mb-2">TRINITY</h3>
<p class="text-cyberyellow mb-4">Cyber Developer</p>
<p class="text-gray-400 group-hover:text-white">Builds digital constructs that bend reality.</p>
</div>
<div class="bg-darkcard p-8 rounded-xl border border-gray-800 hover:border-cyberyellow transition-all group text-center">
<div class="w-32 h-32 mx-auto mb-6 rounded-full bg-gray-800 overflow-hidden border-2 border-gray-700 group-hover:border-cyberyellow transition-all">
<img src="http://static.photos/people/320x240/103" alt="Team member" class="w-full h-full object-cover">
</div>
<h3 class="text-2xl font-bold mb-2">MORPHEUS</h3>
<p class="text-cyberyellow mb-4">UX Architect</p>
<p class="text-gray-400 group-hover:text-white">Designs experiences that wake you up from the digital dream.</p>
</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();
document.addEventListener('DOMContentLoaded', () => {
VANTA.NET({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0xf9ff00,
backgroundColor: 0x0a0a0a
})
});
</script>
</body>
</html>