Spaces:
Running
Running
File size: 3,890 Bytes
696ada9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | <!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> |