fix: Hyperlink to homepage not use React Link

This commit is contained in:
Alicia Sykes 2024-06-22 20:40:30 +01:00
parent 203a634f7c
commit 09efe9904e

View File

@ -22,7 +22,7 @@ const Nav = (props: { children?: ReactNode}) => {
<Header as="header">
<Heading color={colors.primary} size="large">
<img width="64" src="/web-check.png" alt="Web Check Icon" />
<Link to="/">Web Check</Link>
<a href="/" target="_self">Web Check</a>
</Heading>
{props.children && props.children}
</Header>