website refactor

This commit is contained in:
2026-01-18 13:26:35 +01:00
parent 350c78504d
commit 0b301feb61
225 changed files with 1678 additions and 26666 deletions

View File

@@ -13,7 +13,19 @@ interface ImageProps extends ImgHTMLAttributes<HTMLImageElement> {
fullHeight?: boolean;
}
export function Image({ src, alt, width, height, className = '', fallbackSrc, objectFit, fill, fullWidth, fullHeight, ...props }: ImageProps) {
export function Image({
src,
alt,
width,
height,
className = '',
fallbackSrc,
objectFit,
fill,
fullWidth,
fullHeight,
...props
}: ImageProps) {
const classes = [
objectFit ? `object-${objectFit}` : '',
fill ? 'absolute inset-0 w-full h-full' : '',