/** * @license * SPDX-License-Identifier: Apache-2.0 */ import { BrowserRouter, Routes, Route, Navigate } from 'react-router-dom'; import { AuthProvider } from './AuthContext'; import { LandingPage } from './pages/LandingPage'; import { StudentExamEntry } from './pages/StudentExamEntry'; import { TeacherAuth } from './pages/TeacherAuth'; import { StudentDashboard } from './pages/StudentDashboard'; import { TeacherDashboard } from './pages/TeacherDashboard'; import { ExamInterface } from './pages/ExamInterface'; import { ExamResults } from './pages/ExamResults'; import { CreateExam } from './pages/CreateExam'; import { ExamReview } from './pages/ExamReview'; import { QuestionBank } from './pages/teacher/QuestionBank'; import { GroupManager } from './pages/teacher/GroupManager'; export default function App() { return ( {/* Public Routes */} } /> } /> {/* Auth Routes */} } /> } /> {/* Student Routes */} } /> } /> } /> {/* Teacher Routes */} } /> } /> } /> } /> } /> {/* Fallback */} } /> ); }