use a static file for your avatar
this way, others can link to it statically and always have an up to date copy of your avatar
This commit is contained in:
parent
f584041619
commit
96194316d3
2 changed files with 1 additions and 2 deletions
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.2 KiB |
|
@ -1,12 +1,11 @@
|
||||||
---
|
---
|
||||||
import { Image } from "astro:assets";
|
import { Image } from "astro:assets";
|
||||||
import logo from "@assets/logo.png";
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="avatar-wrapper">
|
<div class="avatar-wrapper">
|
||||||
<Image
|
<Image
|
||||||
alt="My profile picture"
|
alt="My profile picture"
|
||||||
src={logo}
|
src={"/logo.png"}
|
||||||
class="avatar"
|
class="avatar"
|
||||||
width={80}
|
width={80}
|
||||||
height={80}
|
height={80}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue