add templates

This commit is contained in:
2026-06-24 21:00:19 -03:00
parent f80223e0ed
commit b210ed4f92
17 changed files with 866 additions and 0 deletions

View File

@@ -31,6 +31,8 @@ const OrdenacaoGame = lazy(() => import("./atividades/programacao/ordenacao/Orde
const PuzzleGame = lazy(() => import("./atividades/programacao/puzzle/PuzzleGame"));
const TurtleGame = lazy(() => import("./atividades/programacao/turtle/TurtleGame"));
const CriptoGame = lazy(() => import("./atividades/programacao/cripto/CriptoGame"));
const ExemploGame = lazy(() => import("./atividades/programacao/exemplo/ExemploGame"));
const ExemploGame2 = lazy(() => import("./atividades/programacao/exemplo2/ExemploGame2"));
const LoadingFallback = () => (
<div
@@ -99,6 +101,8 @@ function AppRoutes() {
<Route path="/atividades/programacao/semaforo" element={<SemaforoGame />} />
<Route path="/atividades/programacao/molemash" element={<MoleMashGame />} />
<Route path="/atividades/programacao/turtle" element={<TurtleGame />} />
<Route path="/atividades/programacao/exemplo" element={<ExemploGame />} />
<Route path="/atividades/programacao/exemplo2" element={<ExemploGame2 />} />
</Routes>
{/* Modal overlay routes — rendered on top of the background page */}