-
Notifications
You must be signed in to change notification settings - Fork 0
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 #363 from MoTrPAC/361_JZ_Metabolomics_DEA_Updates
Connects to #361. PASS1B-06 metabolomics DEA search result updates.
- Loading branch information
Showing
16 changed files
with
488 additions
and
327 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import React from 'react'; | ||
import { trackEvent } from '../../GoogleAnalytics/googleAnalytics'; | ||
|
||
// Function to render landing page announcement | ||
function SubscribeDataUpdates() { | ||
return ( | ||
<div className="data-update-signup col-12 mb-4"> | ||
<h1 className="data-updates-signup-title display-3">Subscribe to our data updates</h1> | ||
<div className="data-updates-signup-content mb-4 lead"> | ||
Stay in the know about the latest data releases and available resources from the | ||
MoTrPAC Data Hub. | ||
</div> | ||
<a | ||
href={process.env.REACT_APP_DATA_UPDATES_SIGNUP_URL} | ||
className="btn btn-primary btn-lg" | ||
role="button" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
onClick={trackEvent.bind( | ||
this, | ||
'User Engagement', | ||
'subscribe_data_updates', | ||
'Landing Page', | ||
'Data updates signup', | ||
)} | ||
> | ||
SUBSCRIBE | ||
</a> | ||
</div> | ||
); | ||
} | ||
|
||
export default SubscribeDataUpdates; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -529,11 +529,15 @@ function PreCAWG() { | |
analysis on these data, complete the steps below: | ||
<ol> | ||
<li> | ||
Ensure you are listed on the required IRB for your institution. | ||
<strong>Ensure you are listed on the required IRB for your institution.</strong> | ||
</li> | ||
<li> | ||
Become listed as a MoTrPAC member on the main site with your | ||
institutional email: Reach out to{' '} | ||
<strong> | ||
Become listed as a MoTrPAC member on the main site with your institutional email. | ||
</strong> | ||
{' '} | ||
Reach out to | ||
{' '} | ||
<a href="mailto:[email protected]" target="_blank" rel="noreferrer"> | ||
[email protected] | ||
</a> | ||
|
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.