rigorsplusplus / index.html
caustino's picture
Update index.html
696ada9 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quantum Gene Fortress</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
</head>
<body class="bg-gray-900 text-white min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-12">
<div id="vanta-bg" class="absolute inset-0 -z-10"></div>
<section class="max-w-4xl mx-auto text-center mb-20">
<h1 class="text-5xl md:text-6xl font-bold mb-6 bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-blue-500">
Quantum Gene Fortress
</h1>
<p class="text-xl md:text-2xl text-gray-300 mb-8">
Post-Quantum Protected Genomic Security Platform
</p>
<div class="flex flex-wrap justify-center gap-4">
<a href="/dashboard.html" class="px-8 py-3 bg-gradient-to-r from-purple-600 to-blue-600 rounded-full font-semibold hover:opacity-90 transition">
Enter Dashboard
</a>
<a href="/about.html" class="px-8 py-3 border border-blue-400 text-blue-400 rounded-full font-semibold hover:bg-blue-900/30 transition">
Learn More
</a>
</div>
</section>
<section class="grid md:grid-cols-3 gap-8 mb-20">
<div class="bg-gray-800/50 backdrop-blur-sm p-6 rounded-xl border border-gray-700 hover:border-blue-400 transition">
<div class="text-blue-400 mb-4">
<i data-feather="shield"></i>
</div>
<h3 class="text-xl font-bold mb-2">Quantum-Resistant Encryption</h3>
<p class="text-gray-400">Kyber-768 and Dilithium-III protect your genomic data from future quantum attacks.</p>
</div>
<div class="bg-gray-800/50 backdrop-blur-sm p-6 rounded-xl border border-gray-700 hover:border-purple-400 transition">
<div class="text-purple-400 mb-4">
<i data-feather="activity"></i>
</div>
<h3 class="text-xl font-bold mb-2">Immutable Audit Trails</h3>
<p class="text-gray-400">Every operation cryptographically signed and recorded on our secure ledger.</p>
</div>
<div class="bg-gray-800/50 backdrop-blur-sm p-6 rounded-xl border border-gray-700 hover:border-blue-400 transition">
<div class="text-blue-400 mb-4">
<i data-feather="lock"></i>
</div>
<h3 class="text-xl font-bold mb-2">Confidential Computing</h3>
<p class="text-gray-400">Model training occurs in hardware-secured enclaves with encrypted memory.</p>
</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();
VANTA.NET({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x4f46e5,
backgroundColor: 0x111827,
points: 12.00,
maxDistance: 22.00,
spacing: 18.00
});
</script>
</body>
</html>