mirror of
https://github.com/YouHaveTrouble/youhavetrouble.github.io.git
synced 2026-06-29 20:46:18 +00:00
21 lines
447 B
Plaintext
21 lines
447 B
Plaintext
---
|
|
import { Image } from 'astro:assets';
|
|
import logoImage from '../assets/img/yht_logo.png';
|
|
|
|
const { width, height } = Astro.props;
|
|
---
|
|
|
|
<a href="/">
|
|
<Image src={logoImage} alt="Logo displaying a stylized character with brown hair wearing purple hoodie on a light blue circle background" width={width} height={height} loading="eager"/>
|
|
</a>
|
|
|
|
<style>
|
|
|
|
@media screen and (max-width: 520px) {
|
|
img {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
</style>
|