-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (70 loc) · 2.34 KB
/
Copy pathindex.html
File metadata and controls
70 lines (70 loc) · 2.34 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Solana Transaction Builder</title>
<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=Press+Start+2P&display=swap" rel="stylesheet">
<style>
.hero {
position: relative;
padding: 2rem;
text-align: center;
overflow: hidden;
}
.hero-content {
display: flex;
align-items: center;
justify-content: center;
gap: 2rem;
position: relative;
z-index: 2;
}
.logo {
width: 128px;
height: 128px;
border: 3px solid #ddd;
border-radius: 16px;
flex-shrink: 0;
}
.hero-background-text {
font-family: 'Press Start 2P', monospace;
font-size: 4.5rem;
color: #f0f0f0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1;
white-space: nowrap;
user-select: none;
}
.description {
color: black;
max-width: 450px;
line-height: 1.6;
text-align: left;
}
</style>
</head>
<body>
<div class="hero">
<div class="hero-background-text">SOLPUSH.IO</div>
<div class="hero-content">
<img src="/android-chrome-512x512.png" alt="Solpush.io Logo" class="logo">
<p class="description">
solpush.io is a web-based toolkit for building, testing, and executing Solana transactions from raw instructions. Use it to explore protocols, validate your ideas, and string instructions together into seamless atomic flows.
</br>
if you <a href="https://believe.app/coin/CpZxXrMNTA7EJVrsAdbohNnhPmHqGxf6t6Z4yWXjtBLV">Believe</a>...
</p>
</div>
</div>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>