Update additional page links

This commit is contained in:
bolens 2024-04-17 09:27:01 -06:00
parent be741a1087
commit 06965b0e82
2 changed files with 3 additions and 3 deletions

View file

@ -57,7 +57,7 @@ const NotFound = (): JSX.Element => {
<HeaderLinkContainer> <HeaderLinkContainer>
<a href="/"><Button>Back to Homepage</Button></a> <a href="/"><Button>Back to Homepage</Button></a>
</HeaderLinkContainer> </HeaderLinkContainer>
<a href="https://github.com/lissy93/web-check">Report Issue</a> <a target="_blank" rel="noreferrer" href="https://github.com/lissy93/web-check">Report Issue</a>
</NotFoundInner> </NotFoundInner>
</AboutContainer> </AboutContainer>
<Footer isFixed={true} /> <Footer isFixed={true} />

View file

@ -870,7 +870,7 @@ const Results = (): JSX.Element => {
<Nav> <Nav>
{ address && { address &&
<Heading color={colors.textColor} size="medium"> <Heading color={colors.textColor} size="medium">
{ addressType === 'url' && <a href={address}><img width="32px" src={`https://icon.horse/icon/${makeSiteName(address)}`} alt="" /></a> } { addressType === 'url' && <a target="_blank" rel="noreferrer" href={address}><img width="32px" src={`https://icon.horse/icon/${makeSiteName(address)}`} alt="" /></a> }
{makeSiteName(address)} {makeSiteName(address)}
</Heading> </Heading>
} }
@ -907,7 +907,7 @@ const Results = (): JSX.Element => {
<a href="#view-download-raw-data"><span className="toggle-filters">Export Data</span></a> <a href="#view-download-raw-data"><span className="toggle-filters">Export Data</span></a>
<a href="/about"><span className="toggle-filters">Learn about the Results</span></a> <a href="/about"><span className="toggle-filters">Learn about the Results</span></a>
<a href="/about#additional-resources"><span className="toggle-filters">More tools</span></a> <a href="/about#additional-resources"><span className="toggle-filters">More tools</span></a>
<a href="https://github.com/lissy93/web-check"><span className="toggle-filters">View GitHub</span></a> <a target="_blank" rel="noreferrer" href="https://github.com/lissy93/web-check"><span className="toggle-filters">View GitHub</span></a>
</div> </div>
) } ) }
</FilterButtons> </FilterButtons>