diff --git a/bootstrap/app.php b/bootstrap/app.php index 6dfce21..db0dd63 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -13,6 +13,7 @@ $app = Bridge::create($container); // change first param to false for production $app->addErrorMiddleware(true, true, true); +$app->get('/home', [ViewController::class, 'home']); $app->get('/admin', [ViewController::class, 'admin']); $app->get('/admin/texts', [ViewController::class, 'texts']); $app->get('/admin/texts/{textId}', [ViewController::class, 'text']);