working on restore form.

This commit is contained in:
killian-larcher
2024-11-29 12:39:50 +01:00
parent feb10603e9
commit 3c4dc6f1d5
3 changed files with 98 additions and 0 deletions
@@ -0,0 +1,19 @@
import {PageParams} from "@/types/next";
import {Page, PageContent, PageHeader, PageTitle} from "@/features/layout/page";
export default async function RoutePage(props: PageParams<{}>) {
return (
<Page>
<PageHeader>
<PageTitle>
Create new project
</PageTitle>
</PageHeader>
<PageContent>
</PageContent>
</Page>
)
}