Files
youhavetrouble.github.io/src/components/Logo.astro
T
2025-04-06 21:40:05 +02:00

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>