website refactor

This commit is contained in:
2026-01-19 18:01:30 +01:00
parent 6154d54435
commit 61b5cf3b64
120 changed files with 2226 additions and 2021 deletions

View File

@@ -184,6 +184,7 @@ export interface BoxProps<T extends ElementType> {
title?: string;
size?: string | number | ResponsiveValue<string | number>;
accept?: string;
multiple?: boolean;
autoPlay?: boolean;
loop?: boolean;
muted?: boolean;
@@ -335,6 +336,7 @@ export const Box = forwardRef(<T extends ElementType = 'div'>(
title,
size,
accept,
multiple,
autoPlay,
loop,
muted,
@@ -564,6 +566,7 @@ export const Box = forwardRef(<T extends ElementType = 'div'>(
rows={rows}
href={href}
name={name}
multiple={multiple}
onPointerDown={onPointerDown}
onPointerMove={onPointerMove}
onPointerUp={onPointerUp}