-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (77 loc) · 3.81 KB
/
Copy pathindex.html
File metadata and controls
82 lines (77 loc) · 3.81 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Aegiron Technologies</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-white text-gray-800">
<!-- Header -->
<header class="bg-blue-900 text-white py-6 shadow">
<div class="container mx-auto px-4 flex justify-between items-center">
<h1 class="text-2xl font-bold">Aegiron Technologies</h1>
<nav class="space-x-6">
<a href="#products" class="hover:underline">Products</a>
<a href="#platform" class="hover:underline">Platform</a>
<a href="#contact" class="hover:underline">Contact</a>
</nav>
</div>
</header>
<!-- Hero -->
<section class="bg-gradient-to-r from-blue-800 to-blue-500 text-white py-20">
<div class="container mx-auto px-4 text-center">
<h2 class="text-4xl font-extrabold mb-4">Open Compute for Everyone</h2>
<p class="text-xl mb-6">From gamers to defense operators — ethical, modular, and upgradeable computing starts here.</p>
<a href="#products" class="bg-white text-blue-800 px-6 py-3 rounded shadow font-semibold">Explore VIREON Platform</a>
</div>
</section>
<!-- Products -->
<section id="products" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<h3 class="text-3xl font-bold text-center mb-12">Core Technologies</h3>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded shadow">
<h4 class="text-xl font-semibold mb-2">VIREON CPUs</h4>
<p>Socketed ARMv9 and RISC-V CPUs, scalable from 4 to 196 cores, built for upgradeability and performance.</p>
</div>
<div class="bg-white p-6 rounded shadow">
<h4 class="text-xl font-semibold mb-2">Emotion²</h4>
<p>A RISC-V architecture reimagining the Cell processor — for real-time AI, vector compute, and simulation.</p>
</div>
<div class="bg-white p-6 rounded shadow">
<h4 class="text-xl font-semibold mb-2">LGA-Z1 Socket</h4>
<p>Open, upgradable CPU socket supporting both ARM and RISC-V platforms with 1056 pins.</p>
</div>
<div class="bg-white p-6 rounded shadow">
<h4 class="text-xl font-semibold mb-2">BIEM Module</h4>
<p>Behavioral Integrity Enhancement Module (BIEM) — a PCIe safeguard enforcing AI and logic compliance.</p>
</div>
<div class="bg-white p-6 rounded shadow">
<h4 class="text-xl font-semibold mb-2">Nova TPU</h4>
<p>Scalable AI accelerator for INT8 and FP16 inference — optimized for edge and data center deployment.</p>
</div>
</div>
</div>
</section>
<!-- Call to Action -->
<section id="platform" class="py-16 bg-white">
<div class="container mx-auto px-4 text-center">
<h3 class="text-3xl font-bold mb-4">Build With Us</h3>
<p class="mb-6 max-w-xl mx-auto">Collaborate with Aegiron through open hardware standards, FPGA prototyping, or academic partnerships.</p>
<a href="#contact" class="bg-blue-800 text-white px-6 py-3 rounded font-semibold">Contact Us</a>
</div>
</section>
<!-- Contact -->
<section id="contact" class="py-12 bg-gray-100">
<div class="container mx-auto px-4 text-center">
<h4 class="text-2xl font-semibold mb-2">Get in Touch</h4>
<p>Email us at <a href="mailto:info@aegirontechnologies.com" class="text-blue-700 underline">info@aegirontechnologies.com</a></p>
</div>
</section>
<!-- Footer -->
<footer class="bg-blue-900 text-white text-center py-4">
© 2025 Aegiron Technologies. All rights reserved.
</footer>
</body>
</html>