feat: add project settings page

This commit is contained in:
Takeshi Kimata
2024-06-02 21:22:33 +09:00
parent 016a8d07c5
commit 24fe7bebb3
21 changed files with 471 additions and 91 deletions

View File

@@ -1,4 +1,4 @@
import { Home } from './home';
import { ProjectHome } from './ProjectHome';
import { useTranslations } from 'next-intl';
export type HomeMessages = {
@@ -69,7 +69,7 @@ export default function Page({ params }: { params: { projectId: string } }) {
};
return (
<>
<Home projectId={params.projectId} messages={messages} />
<ProjectHome projectId={params.projectId} messages={messages} />
</>
);
}