Skip to content

Commit 3566b74

Browse files
committed
docs: add discrawl contact page
1 parent d1f4d37 commit 3566b74

2 files changed

Lines changed: 90 additions & 0 deletions

File tree

docs/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
discrawl.app

docs/index.html

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
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>Discrawl</title>
7+
<meta name="description" content="Discrawl contact page.">
8+
<style>
9+
:root {
10+
color-scheme: light dark;
11+
--bg: #f7f5f0;
12+
--ink: #15181f;
13+
--muted: #59606c;
14+
--line: #d8d2c4;
15+
--accent: #1f7a68;
16+
--panel: #fffdf8;
17+
}
18+
19+
@media (prefers-color-scheme: dark) {
20+
:root {
21+
--bg: #111318;
22+
--ink: #f3efe7;
23+
--muted: #aeb5bf;
24+
--line: #30343d;
25+
--accent: #6ad6bd;
26+
--panel: #181b22;
27+
}
28+
}
29+
30+
* {
31+
box-sizing: border-box;
32+
}
33+
34+
body {
35+
margin: 0;
36+
min-height: 100vh;
37+
display: grid;
38+
place-items: center;
39+
padding: 32px;
40+
background: var(--bg);
41+
color: var(--ink);
42+
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
43+
line-height: 1.5;
44+
}
45+
46+
main {
47+
width: min(100%, 680px);
48+
padding: 40px;
49+
border: 1px solid var(--line);
50+
border-radius: 8px;
51+
background: var(--panel);
52+
}
53+
54+
h1 {
55+
margin: 0 0 12px;
56+
font-size: clamp(2rem, 6vw, 4.25rem);
57+
line-height: 1;
58+
letter-spacing: 0;
59+
}
60+
61+
p {
62+
margin: 0;
63+
font-size: 1.05rem;
64+
color: var(--muted);
65+
}
66+
67+
a {
68+
color: var(--accent);
69+
text-decoration-thickness: 0.08em;
70+
text-underline-offset: 0.18em;
71+
}
72+
73+
.contact {
74+
margin-top: 28px;
75+
padding-top: 24px;
76+
border-top: 1px solid var(--line);
77+
color: var(--ink);
78+
font-weight: 650;
79+
}
80+
</style>
81+
</head>
82+
<body>
83+
<main>
84+
<h1>Discrawl</h1>
85+
<p>Discord archive search and analysis tooling.</p>
86+
<p class="contact">Contact us: <a href="mailto:steipete@gmail.com">steipete@gmail.com</a></p>
87+
</main>
88+
</body>
89+
</html>

0 commit comments

Comments
 (0)