-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
65 lines (63 loc) · 2.15 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en" data-theme="">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personal Blog</title>
<link href="/style/output.css" rel="stylesheet" />
</head>
<body class="font-sans bg-bgPrimary text-text">
<select
id="themeSelect"
class="fixed ml-16 mt-4 px-2 py-2 bg-bgPrimary rounded-md focus:outline-none"
>
<option value="light">Light</option>
<option value="dark">Dark</option>
<option value="midnight">Midnight</option>
<option value="solar">Solar</option>
<option value="lava">Lava</option>
</select>
<div class="container px-4 mx-auto">
<div
id="profile"
class="p-8 mt-8 mb-4 text-center bg-bgSecondary rounded-lg shadow-md"
>
<a href="/"
><img
id="image"
src="https://robohash.org/142.112.63.171.png"
alt="Profile image"
class="object-cover w-32 h-32 mx-auto mb-4 border-2 border-bgInverted rounded-3xl"
/></a>
<h1 id="name" class="mb-2 text-2xl font-bold">Loading 🫂</h1>
<p id="about" class="mb-4 text-base text-textMuted">
This will only take a second.
</p>
<a
id="lud16"
href="lightning:"
class="inline-block px-4 py-2 mx-2 text-blue-500 border border-blue-500 rounded hover:bg-blue-500 hover:text-white"
>⚡ Zap Me
</a>
<a
id="website"
href=""
class="inline-block px-4 py-2 mx-2 text-blue-500 border border-blue-500 rounded hover:bg-blue-500 hover:text-white"
>🔗 Website</a
>
</div>
<div id="longNotesContainer" class="container mx-auto mt-8 bg-bgPrimary">
<div
class="p-10 mb-10 text-4xl font-bold leading-tight text-center md:text-5xl bg-bgSecondary"
>
Loading, Please Wait 🤙 Pura Vida!
</div>
</div>
<!-- <div
id="notesContainer"
class="p-8 mt-8 bg-white rounded-lg shadow-md"
></div> -->
</div>
<script type="module" src="/js/main.js"></script>
</body>
</html>