-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #194 from hotosm/develop
Production release
- Loading branch information
Showing
26 changed files
with
534 additions
and
245 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
15 changes: 7 additions & 8 deletions
15
src/frontend/src/components/CreateProject/DescriptionContents/Contributions/index.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,11 +1,10 @@ | ||
import { contributionsInfo } from '@Constants/createProject'; | ||
|
||
export default function Contributions() { | ||
return ( | ||
<div className="naxatw-px-10 naxatw-py-5"> | ||
<p className="naxatw-text-body-btn">Conditions for Contributions</p> | ||
<p className="naxatw-mt-2 naxatw-text-body-md"> | ||
Fill in your project basic information such as name, description, | ||
hashtag, etc. | ||
</p> | ||
return contributionsInfo?.map(info => ( | ||
<div className="naxatw-px-10 naxatw-py-5" key={info.key}> | ||
<p className="naxatw-text-body-btn">{info.key}</p> | ||
<p className="naxatw-mt-2 naxatw-text-body-md">{info.description}</p> | ||
</div> | ||
); | ||
)); | ||
} |
15 changes: 7 additions & 8 deletions
15
src/frontend/src/components/CreateProject/DescriptionContents/DefineAOI/index.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,11 +1,10 @@ | ||
import { DefineAOIInfo } from '@Constants/createProject'; | ||
|
||
export default function DefineAOI() { | ||
return ( | ||
<div className="naxatw-px-10 naxatw-py-5"> | ||
<p className="naxatw-text-body-btn">Define Area Of Interest (AOI)</p> | ||
<p className="naxatw-mt-2 naxatw-text-body-md"> | ||
Fill in your project basic information such as name, description, | ||
hashtag, etc. | ||
</p> | ||
return DefineAOIInfo?.map(info => ( | ||
<div className="naxatw-px-2 naxatw-py-2" key={info.key}> | ||
<p className="naxatw-text-body-btn">{info.key}</p> | ||
<p className="naxatw-py-1 naxatw-text-body-md">{info.description}</p> | ||
</div> | ||
); | ||
)); | ||
} |
6 changes: 3 additions & 3 deletions
6
src/frontend/src/components/CreateProject/DescriptionContents/GenerateTask/index.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
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.