-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a sentence and link on data driven pages that points to how to co…
…ntribute updates
- Loading branch information
1 parent
9154971
commit 86c343f
Showing
11 changed files
with
74 additions
and
39 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
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
13 changes: 13 additions & 0 deletions
13
src/components/ui/ContributeDataDrivenPage/ContributeDataDrivenPage.module.css
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,13 @@ | ||
.ContributeDataDrivenPage { | ||
background-color: var(--text-color); | ||
border-radius: 0.5rem; | ||
color: #fff; | ||
padding: 0.25rem 1rem; | ||
font-size: 14px; | ||
display: inline-block; | ||
} | ||
|
||
.ContributeDataDrivenPage:hover { | ||
color: #fff; | ||
text-decoration: underline; | ||
} |
12 changes: 12 additions & 0 deletions
12
src/components/ui/ContributeDataDrivenPage/ContributeDataDrivenPage.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,12 @@ | ||
import React from 'react'; | ||
import s from './ContributeDataDrivenPage.module.css' | ||
|
||
const ContributeDataDrivenPage: React.FC = () => { | ||
return ( | ||
<a className={s.ContributeDataDrivenPage} href="/contribute/site-intro/#how-to-update-data-driven-pages"> | ||
<strong>Are we missing any?</strong> Please contribute updates by clicking here and following the instructions | ||
</a> | ||
); | ||
} | ||
|
||
export default ContributeDataDrivenPage; |
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