mirror of
https://github.com/System-End/site.git
synced 2026-04-20 00:25:19 +00:00
19 lines
427 B
JavaScript
19 lines
427 B
JavaScript
import { Link as A, Image } from 'theme-ui'
|
|
|
|
const Flag = () => (
|
|
<A
|
|
href="https://hackclub.com/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
aria-label="Hack Club homepage"
|
|
sx={{ ineHeight: 0, position: 'absolute', top: 0, left: 3 }}
|
|
>
|
|
<Image
|
|
src="https://assets.hackclub.com/flag-orpheus-top.svg"
|
|
alt="Hack Club flag"
|
|
sx={{ width: [96, 128] }}
|
|
/>
|
|
</A>
|
|
)
|
|
|
|
export default Flag
|