import { BrowserRouter as Router, Routes, Route, Navigate } from 'react-router-dom' import HomePage from './pages/HomePage' import Login from './pages/Login' import Signup from './pages/Signup' import Dashboard from './pages/Dashboard' import Reports from './pages/Reports' import ReportSummary from './pages/ReportSummary' import HealthProfile from './pages/HealthProfile' import Settings from './pages/Settings' import Recommendations from './pages/Recommendations' import Medicines from './pages/Medicines' import VoiceAgent from './pages/VoiceAgent' import Features from './pages/Features' import PhysicsTwin from './pages/PhysicsTwin' import ProtectedRoute from './components/ProtectedRoute' import './App.css' function App() { return ( } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> {/* Catch-all: redirect unknown routes to home */} } /> ) } export default App