Update 3D game 2026-07-10 21:20

This commit is contained in:
Warren H
2026-07-10 21:20:17 -04:00
parent 141ec64963
commit e0be0458aa
720 changed files with 366857 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import type { ReactNode } from "react";
export function DualDisplayFrame({ top, bottom }: { top: ReactNode; bottom: ReactNode }) {
return (
<div className="device-frame">
<div className="screen-label"><span>Main viewport</span><small>960 × 540 CSS · 1920 × 1080 · 120Hz</small></div>
{top}
<div className="hinge" aria-hidden="true"><i /><b>AYN THOR</b><i /></div>
<div className="screen-label bottom-label"><span>Context display</span><small>620 × 540 CSS · 1240 × 1080 · 60Hz</small></div>
{bottom}
</div>
);
}