-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
75 lines (64 loc) · 2.68 KB
/
404.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hive Pen | A tool for writers </title>
<meta name="description" content="A tool for writers, specially Hive bloggers.">
<link rel="stylesheet" href="../assets/styles/main.css" />
<link rel="icon" href="../public/img/logo/hivepen-logo-nobg.svg" type="image/x-icon">
<script src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
<style>
.input-wrapper {}
.input-wrapper>input:before {
content: '@';
font-weight: 900;
}
</style>
</head>
<body x-data="{
username: 'carlosepc',
init() {
const urlParams = new URLSearchParams(window.location.search);
this.username = urlParams.get('u') || 'carlosepc';
}
}">
<div
style="position: absolute;top:-100px;left:-150px;border-radius: 99999px;filter: blur(100px); background:var(--primary);padding:8rem;opacity:50%">
</div>
<div
style="position: absolute;top:25%;right:10%;border-radius: 99999px;filter: blur(100px); background:var(--secondary);padding:8rem;opacity:25%;pointer-events: none; z-index: -10; width: 50%;transform: rotate(45deg);">
</div>
<header>
<div class="flex">
<img alt="Hive Pen isologo" src="../public/img/logo/hivepen-logo-nobg.svg" width="124" height="120" />
<h1><span>Hive</span><span>pen</span></h1>
</div>
<p style="font-size: xx-large;font-weight: 600;color:#666">A tool for writers,<br />specially <a
href="https://hive.io" target="_blank" style="color:var(--secondary)">Hive</a> bloggers.
</p>
</header>
<main>
<section style="color: #777;margin-bottom: 4rem;display: block;max-width: 400px;margin-inline:auto">
<p>Hivepen is coming soon.
<p>If you don't have a Hive account already, <a href="https://inleo.io/signup?referral=hivepen"><b>create
one!</b></a>
</p>
</p>
</section>
<div style="display:flex;gap:1rem;flex-direction:column;align-items: center;">
<div class="input-wrapper rounded-full">
<b style="font-weight: 900;color:var(--primary)">@</b>
<input class="username-input" placeholder="your username" x-model="username" />
</div>
<img class="rounded-full avatar"
:src="`https://images.hive.blog/u/${username != '' ? username : 'hivepen' }/avatar`"
:alt="`Avatar for ${username}`">
</div>
</main>
<footer>
<a target="_blank" href="https://carlosepc.github.io">carlosepc's</a>
<a target="_blank" href="https://ecency.com/@hiveto">Hivepen</a><sup>©</sup> All rights reserved
</footer>
</body>
</html>