-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(web): add contents for CO2 subsection and Jobs subsection descri…
…ptive modals
- Loading branch information
Showing
4 changed files
with
69 additions
and
18 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
...project-page/impacts/impact-description-modals/environmental/Co2SubSectionDescription.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,35 @@ | ||
import ModalContent from "../shared/ModalContent"; | ||
import ModalHeader from "../shared/ModalHeader"; | ||
import { mainBreadcrumbSection } from "./breadcrumbSections"; | ||
|
||
const Co2SubSectionDescription = () => { | ||
return ( | ||
<> | ||
<ModalHeader | ||
title="Impacts sur le CO2-eq" | ||
breadcrumbSegments={[mainBreadcrumbSection, { label: "Impacts sur le CO2-eq" }]} | ||
/> | ||
<ModalContent> | ||
<p> | ||
La réalisation du projet a des conséquences sur les émissions de CO2 pour plusieurs | ||
raisons, le cas échéant du fait : Dans ce dernier cas, il est possible de calculer une | ||
équivalence exprimée en nombre de foyers alimentés. | ||
</p> | ||
<ul> | ||
<li> | ||
du changement d’affectation des sols (ces derniers ayant une pouvoir de stockage de | ||
carbone variable selon leur type), par exemple via la désimperméabilisation puis | ||
renaturation, | ||
</li> | ||
<li> | ||
de la réduction des déplacements, par exemple par la création de fonctions urbaines en | ||
coeur de ville et non en périphérie, | ||
</li> | ||
<li>de la création de capacités de production d’énergies renouvelables. </li> | ||
</ul> | ||
</ModalContent> | ||
</> | ||
); | ||
}; | ||
|
||
export default Co2SubSectionDescription; |
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: 30 additions & 0 deletions
30
...views/project-page/impacts/impact-description-modals/social/JobsSubSectionDescription.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,30 @@ | ||
import ModalContent from "../shared/ModalContent"; | ||
import ModalHeader from "../shared/ModalHeader"; | ||
import { mainBreadcrumbSection } from "./breadcrumbSections"; | ||
|
||
const JobsSubSectionDescription = () => { | ||
return ( | ||
<> | ||
<ModalHeader | ||
title="Impacts sur l'emploi" | ||
breadcrumbSegments={[mainBreadcrumbSection, { label: "Impacts sur l'emploi" }]} | ||
/> | ||
<ModalContent> | ||
<p> | ||
La concrétisation du projet nécessite généralement une activité économique qui va | ||
impliquer des emplois, au minimum de manière transitoire pour la remise en état du site | ||
(déconstruction, dépollution, etc.) et pour les étapes d’aménagement et/ou de | ||
construction. | ||
</p> | ||
<p> | ||
Ensuite, en cas de finalité économique du projet (ex : services de proximité, bureaux, | ||
réindustrialisation), des emplois pourront être pérennisés (ex: déménagement d’entreprise) | ||
ou crées (ex : nouvelle implantation ou besoin d’entretien d’équipements notamment | ||
photovoltaïque). | ||
</p> | ||
</ModalContent> | ||
</> | ||
); | ||
}; | ||
|
||
export default JobsSubSectionDescription; |
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