feat(content): more content

This commit is contained in:
nico 2024-12-17 22:50:34 +01:00
parent ccd70d0eb9
commit cc899c587f
Signed by: Nicolas
SSH key fingerprint: SHA256:ELi8eDeNLl5PTn64G+o2Kx5+XVDfHF5um2tZigfwWkM
16 changed files with 169 additions and 57 deletions

View file

@ -1,3 +1,3 @@
export function imageSrc(src: string) {
return src.startsWith('http') ? `url(${src})` : `/images/${src}`
return src.startsWith('http') ? `url(${src})` : `url(/images/${src})`
}