logo png -> webp

This commit is contained in:
m5r
2022-07-14 00:18:49 +02:00
parent ecf3339794
commit f6d73a663c
3 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ type Props = {
const Logo: FunctionComponent<Props> = ({ className }) => (
<div className={className}>
<img src="/shellphone.png" alt="app logo" />
<img src="/shellphone.webp" alt="app logo" />
</div>
);