From 8d0f61eaa0d061aead4c10ac8f606c2f87ab6f97 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 17 Mar 2026 07:51:55 +0000 Subject: [PATCH] feat: Integrate official assistance roles for Police, Military, and Gendarmerie - Created src/OfficialAssistance.jsx with specialized modules. - Integrated OfficialAssistance into src/App.jsx and updated navigation. - Added "Official Assistance" to src/Marketplace.jsx. - Updated README.md with descriptions of the new tools. Co-authored-by: GYFX35 <134739293+GYFX35@users.noreply.github.com> --- README.md | 6 ++ src/App.jsx | 3 + src/Marketplace.jsx | 6 ++ src/OfficialAssistance.jsx | 156 +++++++++++++++++++++++++++++++++++++ 4 files changed, 171 insertions(+) create mode 100644 src/OfficialAssistance.jsx diff --git a/README.md b/README.md index 726b49d..f8696d2 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,12 @@ An immersive Augmented Reality (AR) training simulation built with Three.js and ### 📦 Logistics Digital Twin A 3D warehouse simulation featuring blockchain-backed logistics tracking and IoT-driven anomaly detection. It includes an Incoterms 2020 navigator and AI route optimization tools. +### 🛡️ Official Assistance Tools +Integrated support modules for official entities: +- **Police**: Emergency dispatch, secure incident reporting, and forensic analysis. +- **Military**: Strategic dashboards, AI-driven reconnaissance, and tactical communications. +- **Gendarmerie**: Territorial security management, traffic coordination, and specialized response units. + ## Tech Stack ### Frontend diff --git a/src/App.jsx b/src/App.jsx index b9391db..f0f6dd3 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -7,6 +7,7 @@ import FakeContentAnalyzer from './FakeContentAnalyzer'; import FBIGame from './FBIGame'; import SupplyChainPlatform from './SupplyChainPlatform'; import Marketplace from './Marketplace'; +import OfficialAssistance from './OfficialAssistance'; function App() { const [view, setView] = useState('marketplace'); @@ -26,6 +27,7 @@ function App() { +
@@ -36,6 +38,7 @@ function App() { {view === 'fake-content' && } {view === 'fbi-game' && } {view === 'supply-chain' && } + {view === 'assistance' && }