import React from 'react'; import { Navbar, Sidebar, Main, Footer } from './components'; import { BrowserRouter as Router, Route, Routes, Navigate } from 'react-router-dom'; import { GettingStarted, Dashboard, Applications, CreateApps } from './screens/Home'; import { FaceVerify, FaceSummary, FaceTransaction } from './screens/Biometric/FaceRecognition'; import { Enroll, VerifySection, Liveness, Compare, Search } from './screens/Biometric/FaceRecognition/Section'; import { VerifyKtp } from './screens/Biometric/OcrKtp'; // Import all other components following the dataMenu structure... const App = () => { return (
{/* Main Dashboard */} } /> } /> } /> } /> } /> {/* Biometric - Face Recognition (Verify) */} }> {/* Anak rute */} } /> } /> } /> } /> } /> {/* Default route */} } /> {/* Add routes for the verify section */} } /> } /> } /> } /> } /> {/* Biometric - Face Recognition (Summary) */} } /> } /> {/* Biometric - KTP */} } /> {/* } /> */} {/* Continue for each link */}
); }; export default App;