-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: suppression de l'ancien footer dans les pages * fix: ajout des footers * fix: revert emails * fix: revert logs
- Loading branch information
1 parent
cf70449
commit b365394
Showing
9 changed files
with
50 additions
and
157 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
11 changes: 11 additions & 0 deletions
11
ui/components/espace_pro/common/components/DepotSimplifieLayout.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import React from "react" | ||
|
||
import Layout from "../../Layout" | ||
|
||
export const DepotSimplifieLayout = ({ children }: { children: React.ReactNode }) => { | ||
return ( | ||
<Layout header={false} displayNavigationMenu={false}> | ||
{children} | ||
</Layout> | ||
) | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
import { DepotSimplifieLayout } from "@/components/espace_pro/common/components/DepotSimplifieLayout" | ||
|
||
import InformationCreationCompte from "../../../components/espace_pro/Authentification/InformationCreationCompte" | ||
|
||
export default function CreationDetail() { | ||
return <InformationCreationCompte /> | ||
return ( | ||
<DepotSimplifieLayout> | ||
<InformationCreationCompte /> | ||
</DepotSimplifieLayout> | ||
) | ||
} |
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,6 +1,12 @@ | ||
import { DepotSimplifieLayout } from "@/components/espace_pro/common/components/DepotSimplifieLayout" | ||
|
||
import { AUTHTYPE } from "../../../../common/contants" | ||
import CreationCompte from "../../../../components/espace_pro/Authentification/CreationCompte" | ||
|
||
export default function CreationEntreprise() { | ||
return <CreationCompte type={AUTHTYPE.ENTREPRISE} widget={false} /> | ||
return ( | ||
<DepotSimplifieLayout> | ||
<CreationCompte type={AUTHTYPE.ENTREPRISE} widget={false} /> | ||
</DepotSimplifieLayout> | ||
) | ||
} |
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