refactor: redesign web UX with progressive disclosure and cleaned layout

This commit is contained in:
user
2026-04-28 21:40:09 +09:00
parent 5f2daed4e1
commit 518370b93e
5 changed files with 939 additions and 1231 deletions

View File

@@ -16,7 +16,7 @@ func TestHandlerServesIndex(t *testing.T) {
if rec.Code != http.StatusOK {
t.Fatalf("status = %d", rec.Code)
}
if !strings.Contains(rec.Body.String(), "Interview practice") {
if !strings.Contains(rec.Body.String(), "Turn answers into evidence") {
t.Fatal("expected app shell content")
}
}