forked from safe-global/safe-ecosystem-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (39 loc) · 1.03 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Safe Ecosystem Database</title>
<style>
body {
font-family: sans-serif;
margin: 0;
}
.content {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.wrapper {
display: grid;
padding: 32px;
box-sizing: border-box;
height: 100vh;
grid-template-rows: auto 1fr auto;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="header">
<img src="/logos/safe.png" alt="Safe Logo" width="100" />
</div>
<div class="content">
<h1>Safe Ecosystem Database</h1>
</div>
<div class="footer">
<p>Powered by <a href="https://safe.global" target="_blank" rel="noreferrer">Safe</a> - <a href="https://github.com/safe-global/safe-ecosystem-database" target="_blank" rel="noreferrer">Github</a></p>
</div>
</div>
</body>
</html>