Skip to content

Commit fc9fdaf

Browse files
committed
📝 Temporary site replacement placeholder
why not go for it. I choose a confident step!
1 parent 5d724f0 commit fc9fdaf

File tree

3 files changed

+141
-5
lines changed

3 files changed

+141
-5
lines changed

imgs/tmp/foot.png

10.6 KB
Loading

imgs/tmp/meme.jpeg

77.4 KB
Loading

index.html

Lines changed: 141 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,142 @@
1-
<!DOCTYPE html>
2-
<html>
3-
<head>
4-
<meta http-equiv="refresh" content="0; url=https://www.blocktransfer.com">
5-
</head>
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>Block Transfer</title>
7+
<meta name="description" content="Block Transfer – simple landing page">
8+
<style>
9+
:root {
10+
--bg: #0f1115;
11+
--card: #161922;
12+
--text: #e8eaf1;
13+
--muted: #a6adbb;
14+
--accent: #8a5cff;
15+
}
16+
* { box-sizing: border-box; }
17+
html, body { height: 100%; }
18+
body {
19+
margin: 0;
20+
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial;
21+
background: var(--bg);
22+
color: var(--text);
23+
line-height: 1.5;
24+
text-align: center; /* center align content text */
25+
}
26+
a { color: var(--accent); text-decoration: none; }
27+
a:hover { text-decoration: underline; }
28+
29+
.container {
30+
max-width: 960px;
31+
margin: 0 auto;
32+
padding: 24px;
33+
}
34+
header {
35+
padding: 16px 0;
36+
}
37+
.logo {
38+
width: 180px;
39+
height: auto;
40+
display: block;
41+
margin: 0 auto;
42+
border-radius: 45px;
43+
filter: drop-shadow(0 2px 18px rgba(138, 92, 255, 0.25));
44+
}
45+
.tagline {
46+
margin: 12px 0 0;
47+
font-weight: 600;
48+
font-size: clamp(1.25rem, 2.5vw, 1.6rem);
49+
letter-spacing: 0.2px;
50+
}
51+
main {
52+
margin-top: 16px;
53+
background: var(--card);
54+
border: 1px solid rgba(255,255,255,0.06);
55+
border-radius: 16px;
56+
padding: 20px;
57+
box-shadow: 0 10px 30px rgba(0,0,0,0.25);
58+
}
59+
.intro {
60+
margin: 0 0 16px;
61+
color: var(--muted);
62+
}
63+
figure {
64+
margin: 0;
65+
}
66+
.media {
67+
max-width: 480px;
68+
width: 100%;
69+
height: auto;
70+
display: block;
71+
border-radius: 12px;
72+
border: 1px solid rgba(255,255,255,0.06);
73+
margin: 0 auto;
74+
}
75+
figcaption {
76+
font-size: 0.9rem;
77+
color: var(--muted);
78+
margin-top: 8px;
79+
}
80+
.footer-links {
81+
display: flex;
82+
flex-wrap: wrap;
83+
gap: 16px;
84+
align-items: center;
85+
justify-content: center;
86+
margin-bottom: 16px;
87+
}
88+
.footer-links a {
89+
padding: 8px 12px;
90+
background: rgba(138, 92, 255, 0.12);
91+
border: 1px solid rgba(138, 92, 255, 0.35);
92+
border-radius: 999px;
93+
transition: transform 120ms ease;
94+
}
95+
.footer-links a:hover { transform: translateY(-1px); }
96+
footer {
97+
margin-top: 16px;
98+
padding: 16px;
99+
}
100+
.footer-banner {
101+
max-width: 720px;
102+
width: 100%;
103+
height: auto;
104+
display: block;
105+
border-radius: 12px;
106+
margin: 0 auto;
107+
}
108+
</style>
109+
</head>
110+
<body>
111+
<div class="container">
112+
113+
<header>
114+
<a href="#" aria-label="Block Transfer Home">
115+
<img class="logo" src="logo.png" alt="Block Transfer logo">
116+
</a>
117+
<h1 class="tagline">Direct, investor-first securities infrastructure</h1>
118+
</header>
119+
120+
<nav class="footer-links" aria-label="papers">
121+
<a href="https://github.com/blocktransfer" target="_blank" rel="noopener">GitHub</a>
122+
<a href="https://www.whydrs.org/the-whydrs-information-packet" target="_blank" rel="noopener">Significance</a>
123+
<a href="https://blocktransfer.com/.well-known/yellowpaper.pdf" target="_blank" rel="noopener">Yellowpaper</a>
124+
</nav>
125+
126+
<main>
127+
<p class="intro">
128+
Block Transfer builds open tools and workflows for modern securities transfer and recordkeeping.
129+
</p>
130+
131+
<figure>
132+
<a href="https://www.sec.gov/edgar/browse/?CIK=1846058"><img class="media" src="imgs/tmp/meme.jpeg" alt="u-DogOnTheLeash (SS)"></a>
133+
<figcaption><a href="https://www.reddit.com/r/Superstonk/comments/1mbx3a7/sec_filing_from_tomorrow_leaked/">u/DogOnTheLeash</a> community meme</figcaption>
134+
</figure>
135+
</main>
136+
</div>
137+
138+
<footer>
139+
<a href="https://blocktransfer.com/.well-known/deck.pdf"><img class="footer-banner" src="imgs/tmp/foot.png" alt="Footer banner image"></a>
140+
</footer>
141+
</body>
6142
</html>

0 commit comments

Comments
 (0)