tangled
alpha
login
or
join now
t1c.dev
/
pdsls
forked from
pds.ls/pdsls
0
fork
atom
atproto explorer
0
fork
atom
overview
issues
pulls
pipelines
homepage signature
handle.invalid
4 months ago
8b9273d3
15b07a71
verified
This commit was signed with the committer's
known signature
.
handle.invalid
SSH Key Fingerprint:
SHA256:mBrT4x0JdzLpbVR95g1hjI1aaErfC02kmLRkPXwsYCk=
+12
3 changed files
expand all
collapse all
unified
split
index.html
src
styles
index.css
views
home.tsx
+1
index.html
···
15
15
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
16
16
<link rel="preconnect" href="https://fonts.bunny.net" />
17
17
<link href="https://fonts.bunny.net/css?family=roboto-mono:400" rel="stylesheet" />
18
18
+
<link href="https://fonts.cdnfonts.com/css/pecita" rel="stylesheet" />
18
19
<script>
19
20
document.documentElement.classList.toggle(
20
21
"dark",
+1
src/styles/index.css
···
9
9
@theme {
10
10
--font-sans: "Inter", sans-serif;
11
11
--font-mono: "Roboto Mono", monospace;
12
12
+
--font-pecita: "Pecita", serif;
12
13
13
14
--color-dark-50: oklch(40.91% 0 0);
14
15
--color-dark-100: oklch(35.62% 0 0);
+10
src/views/home.tsx
···
54
54
<span class="iconify ri--bluesky"></span>
55
55
</a>
56
56
</div>
57
57
+
<div class="text-center text-sm italic">
58
58
+
Made by{" "}
59
59
+
<a
60
60
+
href="https://juli.ee"
61
61
+
class="font-pecita relative after:absolute after:bottom-0 after:left-0 after:h-[1px] after:w-0 after:bg-current after:transition-[width] after:duration-300 after:ease-out hover:after:w-full"
62
62
+
>
63
63
+
Juliet
64
64
+
</a>{" "}
65
65
+
with love
66
66
+
</div>
57
67
</div>
58
68
);
59
69
};