-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fiche produit: - use react-hook-form - add thématiques / user types / url budget / mon service sécurisé - upload image désactivé 😢 cosmetics fiches membre cosmetics error page fix #103 #57 #58 fix betagouv/animation-communaute#28 fix betagouv/beta.gouv.fr#4509
- Loading branch information
Showing
44 changed files
with
1,220 additions
and
1,093 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 0 additions & 30 deletions
30
src/app/(private)/(dashboard)/startups/create-form/StartupCreateFormClientPage.tsx
This file was deleted.
Oops, something went wrong.
15 changes: 12 additions & 3 deletions
15
src/app/(private)/(dashboard)/startups/create-form/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,25 @@ | ||
import { Metadata } from "next"; | ||
import StartupCreateFormClientPage from "./StartupCreateFormClientPage"; | ||
|
||
import { StartupInfoCreate } from "@/components/StartupInfoCreatePage"; | ||
import betagouv from "@/server/betagouv"; | ||
import { routeTitles } from "@/utils/routes/routeTitles"; | ||
|
||
export const metadata: Metadata = { | ||
title: `${routeTitles.startupCreate()} / Espace Membre`, | ||
}; | ||
|
||
export default function Page(props) { | ||
export default async function Page(props) { | ||
const incubators = await betagouv.incubators(); | ||
const sponsors = await betagouv.sponsors(); | ||
|
||
return ( | ||
<> | ||
<h1>{routeTitles.startupCreate()}</h1> | ||
<StartupCreateFormClientPage {...props} /> | ||
<StartupInfoCreate | ||
sponsors={sponsors} | ||
incubators={incubators} | ||
{...props} | ||
/> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.