Main pages

This commit is contained in:
2026-03-10 23:45:14 +01:00 Unverified
parent 2b4897ad65
commit b6a78abae8
17 changed files with 2244 additions and 116 deletions
+22
View File
@@ -0,0 +1,22 @@
// app/globals.d.ts
import * as React from 'react';
declare global {
namespace JSX {
interface IntrinsicElements {
'model-viewer': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & {
src?: string;
poster?: string;
'ios-src'?: string;
reveal?: string;
'shadow-intensity'?: string | number;
ar?: boolean;
'camera-controls'?: boolean;
'touch-action'?: string;
alt?: string;
class?: string;
};
}
}
}