From 8bd23cdb6f7612e3d5ece9592d8fff3cb6bcbe84 Mon Sep 17 00:00:00 2001 From: fullsizemalt <106900403+fullsizemalt@users.noreply.github.com> Date: Wed, 17 Dec 2025 07:24:22 -0800 Subject: [PATCH] debug(3d): replace viewer with minimal red cube scene to test library compatibility --- frontend/src/pages/Facility3DViewerPage.tsx | 32 ++++++++++----------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/frontend/src/pages/Facility3DViewerPage.tsx b/frontend/src/pages/Facility3DViewerPage.tsx index 6478f79..7aec62d 100644 --- a/frontend/src/pages/Facility3DViewerPage.tsx +++ b/frontend/src/pages/Facility3DViewerPage.tsx @@ -1,29 +1,27 @@ -import { ArrowLeft } from 'lucide-react'; +import { Canvas } from '@react-three/fiber'; import { Link } from 'react-router-dom'; +import { ArrowLeft } from 'lucide-react'; export default function Facility3DViewerPage() { return ( -
-
+
+
Back -
- -
-

- Facility 3D Viewer -

-
-

System Maintenance

-

3D Visualization Engine is currently undergoing upgrades.

-

Please check back later.

+
+

Debug Mode: Red Cube

- - - Return to Compliance Dashboard -
+ + + + + + + + +
); }