this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

zodiac

alice 9051b05a a9c31ea0

+16 -6
+2 -6
src/app/page.tsx
··· 16 16 <Link href={`${protocol}://likebomb.${host}`}>๐Ÿ’ž like bomb bookmarklet ๐Ÿ’ž</Link> 17 17 <Link href={`${protocol}://showall.${host}`}>๐Ÿ™ˆ show all bookmarklet ๐Ÿ™ˆ</Link> 18 18 <Link href={`${protocol}://alice.${host}`}>me</Link> 19 - <Link href={`${protocol}://sortinghat.${host}`}>sorting hat</Link> 20 - {/* <a href={`${protocol}://likebomb.${host}`}>๐Ÿ’ž like bomb bookmarklet ๐Ÿ’ž</a> 21 - <a href={`${protocol}://showall.${host}`}>๐Ÿ™ˆ show all bookmarklet ๐Ÿ™ˆ</a> 22 - <a href={`${protocol}://alice.${host}`}>me</a> 23 - <a href={`${protocol}://sortinghat.${host}`}>sorting hat</a> 24 - */} 19 + <Link href={`${protocol}://sortinghat.${host}`}>sorting hat bluesky labeler</Link> 20 + <Link href={`${protocol}://zodiacsigns.${host}`}>zodiac signs bluesky labeler</Link> 25 21 </div> 26 22 <footer> 27 23 <Image src="/underconstruction.gif" width={459} height={51} alt="under construction" />
+6
src/app/zodiacsigns/.well-known/atproto-did/route.ts
··· 1 + export async function GET(request: Request) { 2 + return new Response('did:plc:cdbp64nijvsmhuhodbuoqcwi', { 3 + status: 200, 4 + headers: { 'content-type': 'text/plain' }, 5 + }); 6 + }
+8
src/app/zodiacsigns/route.ts
··· 1 + export async function GET(request: Request) { 2 + return new Response(null, { 3 + status: 302, 4 + headers: { 5 + 'Location': 'https://bsky.app/profile/did:plc:cdbp64nijvsmhuhodbuoqcwi', 6 + }, 7 + }); 8 + }