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' && }