Personal Site
0
fork

Configure Feed

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

Add did and pds to atproto identity

+5 -5
+1 -1
src/components/home/Landing.astro
··· 7 7 8 8 const avatar = await fetch( 9 9 "https://api.bsky.app/xrpc/app.bsky.actor.getProfile?actor=" + 10 - socials.atproto, 10 + socials.atproto.did, 11 11 ) 12 12 .then((x) => { 13 13 if (!x.ok) {
+4 -4
src/site-config.ts
··· 1 1 export const socials = { 2 - atproto: "vielle.dev", 2 + atproto: { handle: "vielle.dev", did: "did:plc:4zht3z4caxwrw3dlsybodywc", pds: "https://puffball.us-east.host.bsky.network" }, 3 3 tumblr: "what-if-doctor-who-was-yuri-yaoi", 4 4 github: "Afterlifepro", 5 5 spotify: "viwn798qleabtpxqgt6oppm8l", ··· 45 45 name: "atproto", 46 46 children: [ 47 47 { 48 - slug: "https://bsky.app/profile/" + socials.atproto, 48 + slug: "https://bsky.app/profile/" + socials.atproto.handle, 49 49 name: "Blue&shy;sky", 50 50 }, 51 51 { 52 - slug: "https://tangled.sh/@" + socials.atproto, 52 + slug: "https://tangled.sh/@" + socials.atproto.handle, 53 53 name: "tangled<wbr>.sh", 54 54 }, 55 55 { 56 - slug: "https://pdsls://at://" + socials.atproto, 56 + slug: "https://pdsls://at://" + socials.atproto.did, 57 57 name: "pdsls", 58 58 }, 59 59 ],