A quick vibe-coded site to test response times of PLC.directory mirrors (over 3 attempts)
1export interface Mirror { 2 name: string; 3 url: string; 4} 5 6export const mirrors: Mirror[] = [ 7 { 8 name: "plc.directory", 9 url: "https://plc.directory", 10 }, 11 { 12 name: "plc.bsky-mirror.dev", 13 url: "https://plc.bsky-mirror.dev", 14 }, 15 { 16 name: "plc.us-east.host.bsky.network", 17 url: "https://plc.us-east.host.bsky.network", 18 }, 19];