Display information of project on home tab

This commit is contained in:
Takeshi Kimata
2024-05-06 19:02:29 +09:00
parent 6ccbf1be29
commit 47457e45f4
7 changed files with 131 additions and 5 deletions

View File

@@ -5,6 +5,7 @@ export type HomeMessages = {
folders: string;
testCases: string;
testRuns: string;
progress: string;
testTypes: string;
other: string;
security: string;
@@ -32,6 +33,7 @@ export default function Page({ params }: { params: { projectId: string } }) {
folders: t("Folders"),
testCases: t("test_cases"),
testRuns: t("test_runs"),
progress: t("progress"),
testTypes: t("test_types"),
other: t("other"),
security: t("security"),