-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (41 loc) · 2.16 KB
/
Copy pathindex.html
File metadata and controls
43 lines (41 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Antigravity Vesting | Protocol</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=JetBrains+Mono&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a href="index.html" class="logo-text">⏳ Vasting Protocol</a>
<a href="app.html" class="btn">Launch dApp 🚀</a>
</header>
<main class="hero">
<h1>Secure. Linear. Automated.</h1>
<p style="max-width: 700px; margin: 1rem auto 2.5rem;">
A production-grade Token Vesting protocol built for enterprise-scale Web3 applications.
Engineered with extreme precision, mathematically verifiable linear payout schedules, and fortified by advanced EVM security patterns.
</p>
<a href="app.html" class="btn" style="padding: 1rem 2.5rem; font-size: 1.1rem;">Enter Application</a>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">🛡️</div>
<h3>OpenZeppelin Fortified</h3>
<p>Secured with battle-tested standards including <code>SafeERC20</code>, <code>ReentrancyGuard</code>, and `Ownable` modifiers to completely neutralize reentrancy and unauthorized access.</p>
</div>
<div class="feature-card">
<div class="feature-icon">⚡</div>
<h3>Yul Assembly Optimization</h3>
<p>Standard Solidity <code>abi.encode</code> is entirely replaced with raw inline Yul memory <code>keccak256</code> hashing to achieve absolute minimum gas consumption per state mutation.</p>
</div>
<div class="feature-card">
<div class="feature-icon">📐</div>
<h3>Deterministic Linear Math</h3>
<p>Time-travel tested with Foundry `vm.warp()`. Guarantees exact fractional releases accurate to the second, strictly respecting cliff temporal bounds.</p>
</div>
</div>
</main>
</body>
</html>