-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
138 lines (120 loc) · 5.14 KB
/
Copy pathindex.html
File metadata and controls
138 lines (120 loc) · 5.14 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Alexander Hicks">
<meta name="keywords" content="Formal Verification, zkEVM, zkVM, Ethereum">
<meta name="description" content="The zkEVM Formal Verification Project">
<title>Verified zkEVMs</title>
<!-- Modern Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
</head>
<body>
<div class="app-container">
<!-- Mobile Header -->
<header class="mobile-header">
<div class="logo-area">
<img src="eth-diamond-multi.png" alt="Ethereum logo" class="mobile-logo">
<span>Verified zkEVMs</span>
</div>
<button id="menu-toggle" aria-label="Toggle navigation">
<span></span>
<span></span>
<span></span>
</button>
</header>
<!-- Sidebar Navigation -->
<aside class="sidebar">
<div class="sidebar-header">
<img src="eth-diamond-multi.png" alt="Ethereum logo" class="sidebar-logo">
<h1>Verified zkEVMs</h1>
</div>
<nav>
<a href="#top" class="nav-link">Home</a>
<a href="#overview" class="nav-link">Overview</a>
<a href="#tracks" class="nav-link">Tracks</a>
<a href="#documentation" class="nav-link">Documentation</a>
<a href="#grants" class="nav-link">Grants</a>
<a href="#contact" class="nav-link">Contact</a>
<a href="#activity" class="nav-link">Activity</a>
</nav>
<!-- <div class="sidebar-footer">
<p>© 2025 Ethereum Foundation</p>
</div> -->
</aside>
<!-- Main Content -->
<main class="main-content">
<section id="top" class="hero-section">
<div class="hero-content">
<h1>zkEVM Formal Verification Project</h1>
<p class="subtitle">Accelerating the application of formal verification methods to zkEVMs to ensure
correctness and security.</p>
</div>
</section>
<section id="overview" class="content-section">
<div id="overview-content">
<!-- Overview content loaded via JS -->
</div>
</section>
<section id="tracks" class="content-section">
<h2>Tracks</h2>
<div id="tracks-container" class="grid-container">
<!-- Tracks loaded via JS -->
</div>
</section>
<section id="documentation" class="content-section">
<h2>Documentation</h2>
<div class="card">
<h3>Code</h3>
<ul>
<li><a href="https://github.com/Verified-zkEVM" target="_blank" class="github-link">GitHub
Organization</a></li>
</ul>
</div>
<div class="card">
<div id="media-container">
<!-- Media content loaded via JS -->
</div>
</div>
</section>
<section id="grants" class="content-section">
<h2>Grants</h2>
<div class="alert-box">
<strong>Status:</strong> Applications are currently open. Although applications are not restricted
to these, please see the RFPs below.
</div>
<div class="card" id="rfps-content">
<!-- RFPs content loaded via JS -->
</div>
<div class="card" id="applications-content">
<!-- Applications loaded via JS -->
</div>
<h3>Grants Awarded</h3>
<div id="grants-container" class="card">
<!-- Grants content loaded via JS -->
</div>
</section>
<section id="contact" class="content-section">
<div id="contact-content" class="card contact-card">
<!-- Contact content loaded via JS -->
</div>
</section>
<section id="activity" class="content-section">
<h2>Recent Activity</h2>
<div id="activity-container" class="card">
<p class="loading-text">Loading GitHub activity...</p>
<!-- Activity loaded via JS -->
</div>
</section>
</main>
</div>
<script src="app.js"></script>
</body>
</html>