Add AI Virus Deflection story to homepage and new agent briefing page

Give the public homepage a themed breach-alert hero and add a /briefing
page with the full mission narrative, both linking into the existing
game dashboard flow.
This commit is contained in:
Frank
2026-07-04 23:00:31 +02:00
parent 7dbb738da8
commit 839113c356
4 changed files with 143 additions and 6 deletions
@@ -15,4 +15,11 @@ final class HomeController extends AbstractController
return $this->render(
'website/home/index.html.twig');
}
#[Route(path: '/briefing', name: 'website_intro')]
public function intro(): Response
{
return $this->render(
'website/home/intro.html.twig');
}
}