-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/feature_6104_directive-page' int…
…o main-copy
- Loading branch information
1 parent
963260b
commit 24ce4eb
Showing
53 changed files
with
1,629 additions
and
469 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
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
Binary file added
BIN
+92.8 KB
apps/web/src/assets/documents/Digital_Contracting_Questionnaire_EN.docx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+63.5 KB
apps/web/src/assets/documents/Modele_de_recrutement_numerique_FR.docx
Binary file not shown.
Binary file added
BIN
+68.5 KB
apps/web/src/assets/documents/Orientation_sur_les_conditions_habilitantes_FR.docx
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+88.5 KB
apps/web/src/assets/documents/Questionnaire_d'octroi_de_contrats_numeriques_FR.docx
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 was deleted.
Oops, something went wrong.
28 changes: 28 additions & 0 deletions
28
apps/web/src/components/CallToAction/CallToActionButton.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,28 @@ | ||
import React from "react"; | ||
import ContentWrapper from "./ContentWrapper"; | ||
import IconWrapper from "./IconWrapper"; | ||
|
||
import { commonStyles, stylesMap } from "./styles"; | ||
import { CallToActionProps } from "./types"; | ||
|
||
export type CallToActionButtonProps = CallToActionProps<HTMLAnchorElement>; | ||
|
||
const CallToActionButton = ({ | ||
Icon, | ||
children, | ||
color, | ||
...rest | ||
}: CallToActionButtonProps): React.ReactElement => { | ||
const colors = stylesMap[color]; | ||
|
||
return ( | ||
<a {...colors} {...commonStyles} {...rest}> | ||
<IconWrapper> | ||
<Icon /> | ||
</IconWrapper> | ||
<ContentWrapper>{children}</ContentWrapper> | ||
</a> | ||
); | ||
}; | ||
|
||
export default CallToActionButton; |
Oops, something went wrong.