tangled
alpha
login
or
join now
bas.sh
/
pdsls
forked from
pds.ls/pdsls
0
fork
atom
atmosphere explorer
0
fork
atom
overview
issues
pulls
pipelines
new homepage footer
handle.invalid
2 months ago
9845841d
0c03974c
verified
This commit was signed with the committer's
known signature
.
handle.invalid
SSH Key Fingerprint:
SHA256:mBrT4x0JdzLpbVR95g1hjI1aaErfC02kmLRkPXwsYCk=
+25
-20
2 changed files
expand all
collapse all
unified
split
src
layout.tsx
views
home.tsx
+1
-14
src/layout.tsx
···
6
6
import { hasUserScope } from "./auth/scope-utils";
7
7
import { agent } from "./auth/state.js";
8
8
import { RecordEditor } from "./components/create";
9
9
-
import { DropdownMenu, MenuProvider, MenuSeparator, NavMenu } from "./components/dropdown.jsx";
9
9
+
import { DropdownMenu, MenuProvider, NavMenu } from "./components/dropdown.jsx";
10
10
import { NavBar } from "./components/navbar.jsx";
11
11
import { NotificationContainer } from "./components/notification.jsx";
12
12
import { Search, SearchButton, showSearch } from "./components/search.jsx";
···
161
161
<NavMenu href="/labels" label="Labels" icon="lucide--tag" />
162
162
<NavMenu href="/car" label="Archive tools" icon="lucide--folder-archive" />
163
163
<NavMenu href="/settings" label="Settings" icon="lucide--settings" />
164
164
-
<MenuSeparator />
165
165
-
<NavMenu
166
166
-
href="https://bsky.app/profile/did:plc:6q5daed5gutiyerimlrnojnz"
167
167
-
label="Bluesky"
168
168
-
icon="simple-icons--bluesky text-[#0085ff]"
169
169
-
newTab
170
170
-
/>
171
171
-
<NavMenu
172
172
-
href="https://tangled.org/@pdsls.dev/pdsls/"
173
173
-
label="Source"
174
174
-
icon="lucide--code"
175
175
-
newTab
176
176
-
/>
177
164
</DropdownMenu>
178
165
</MenuProvider>
179
166
</div>
+24
-6
src/views/home.tsx
···
122
122
</section>
123
123
</div>
124
124
125
125
-
<div class="text-center text-sm text-neutral-700 dark:text-neutral-300">
126
126
-
Made by{" "}
125
125
+
<div class="flex justify-center gap-2 text-sm text-neutral-600 dark:text-neutral-300">
127
126
<a
128
127
href="https://juli.ee"
129
129
-
class="font-pecita relative text-rose-400 after:absolute after:bottom-0 after:left-0 after:h-px after:w-0 after:bg-current after:transition-[width] after:duration-300 after:ease-out hover:after:w-full dark:text-rose-300"
128
128
+
target="_blank"
129
129
+
class="relative flex items-center gap-1.5 after:absolute after:bottom-0 after:left-0 after:h-px after:w-0 after:bg-current after:text-rose-400 after:transition-[width] after:duration-300 after:ease-out hover:after:w-full dark:after:text-rose-300"
130
130
>
131
131
-
Juliet
132
132
-
</a>{" "}
133
133
-
with love
131
131
+
<span class="iconify lucide--terminal text-rose-400 dark:text-rose-300"></span>
132
132
+
<span class="font-pecita">juliet</span>
133
133
+
</a>
134
134
+
•
135
135
+
<a
136
136
+
href="https://bsky.app/profile/did:plc:6q5daed5gutiyerimlrnojnz"
137
137
+
class="relative flex items-center gap-1.5 after:absolute after:bottom-0 after:left-0 after:h-px after:w-0 after:bg-current after:text-[#0085ff] after:transition-[width] after:duration-300 after:ease-out hover:after:w-full"
138
138
+
target="_blank"
139
139
+
>
140
140
+
<span class="simple-icons--bluesky iconify text-[#0085ff]"></span>
141
141
+
Bluesky
142
142
+
</a>
143
143
+
•
144
144
+
<a
145
145
+
href="https://tangled.org/@pdsls.dev/pdsls/"
146
146
+
class="relative flex items-center gap-1.5 after:absolute after:bottom-0 after:left-0 after:h-px after:w-0 after:bg-current after:text-black after:transition-[width] after:duration-300 after:ease-out hover:after:w-full dark:after:text-white"
147
147
+
target="_blank"
148
148
+
>
149
149
+
<span class="iconify i-tangled text-black dark:text-white"></span>
150
150
+
Source
151
151
+
</a>
134
152
</div>
135
153
</div>
136
154
);