a tool for shared writing and social publishing

make external links a's

+3 -3
+3 -3
app/reader/ReaderContent.tsx
··· 135 135 hover:outline-accent-contrast hover:border-accent-contrast 136 136 `} 137 137 > 138 - <SpeedyLink 138 + <a 139 139 className="h-full w-full absolute top-0 left-0" 140 140 href={`${props.publication.href}/${postUri.rkey}`} 141 141 /> ··· 183 183 uri: string; 184 184 }) => { 185 185 return ( 186 - <SpeedyLink 186 + <a 187 187 href={props.href} 188 188 className="text-accent-contrast font-bold no-underline text-sm flex gap-1 items-center md:w-fit w-full relative shrink-0" 189 189 > 190 190 <PubIcon small record={props.pubRecord} uri={props.uri} /> 191 191 {props.pubRecord.name} 192 - </SpeedyLink> 192 + </a> 193 193 ); 194 194 }; 195 195