feat: Latest production version with interior scene and glass

Includes room interior with floor, walls, glass you can see through,
and all uncommitted production changes that were running live.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Ubuntu
2026-03-01 14:50:31 +00:00
parent 748a5814e7
commit 3d788740cb
110 changed files with 162553 additions and 13070 deletions

19
bron/Tooltip.js Normal file
View File

@@ -0,0 +1,19 @@
import React from "react";
const Tooltip = ({ message, children }) => {
return (
<div className="relative group">
{children}
{message !== "" && (
<div className="absolute top-[30px] left-1/2 w-[140px] transform -translate-x-1/2 mb-2 hidden group-hover:block z-10">
<div className="relative bg-gray-800 text-white text-xs rounded py-1 px-4">
{message}
<div className="absolute top-[-5px] left-1/2 transform -translate-x-1/2 w-3 h-3 bg-gray-800 rotate-45"></div>
</div>
</div>
)}
</div>
);
};
export default Tooltip;