From 56643380f54f1d1d3c42cc05ad1aec6d1f67e74e Mon Sep 17 00:00:00 2001 From: Claire Nord Date: Tue, 25 Jul 2023 15:19:09 -0700 Subject: [PATCH] app components header: add number of rounds and copyright --- app/components/header.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/components/header.tsx b/app/components/header.tsx index fc0b3959..40ef3225 100644 --- a/app/components/header.tsx +++ b/app/components/header.tsx @@ -131,14 +131,17 @@ function GameSettings({ game, url }: { game: Game; url: string }) { {game.title} - - by {game.author} + + {game.author} · {game.copyright} {game.note && (

{game.note}

)} + + {game.boards.length} round{game.boards.length === 1 ? "" : "s"} +