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