-
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 branch 'dev' into refactor/vite
# Conflicts: # src/LandingPage/landingPage.jsx # src/LandingPage/openOfficeHour.jsx # src/sass/landingPage.scss # src/sass/main.scss # yarn.lock
- Loading branch information
Showing
17 changed files
with
526 additions
and
368 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={import.meta.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import React from 'react'; | ||
import { trackEvent } from '../GoogleAnalytics/googleAnalytics'; | ||
|
||
// Function to render landing page announcement | ||
function OpenOfficeHour() { | ||
return ( | ||
<div className="office-hour-signup col-12 border p-5" id="join-office-hour"> | ||
<h1 className="office-hour-title display-2">Join Us</h1> | ||
<div className="office-hour-content mb-4 lead"> | ||
Come join us at the next virtual office hour on | ||
{' '} | ||
{import.meta.env.REACT_APP_OFFICE_HOUR_DAY} | ||
{' '} | ||
{import.meta.env.REACT_APP_OFFICE_HOUR_DATE} | ||
{' '} | ||
at 11:00 am Pacific Time and learn more about our data. | ||
</div> | ||
<a | ||
href={import.meta.env.REACT_APP_OFFICE_HOUR_SIGNUP_URL} | ||
className="btn btn-dark btn-lg" | ||
role="button" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
onClick={trackEvent.bind( | ||
this, | ||
'User Engagement', | ||
'open_office_hour', | ||
'Landing Page', | ||
import.meta.env.REACT_APP_OFFICE_HOUR_DATE, | ||
)} | ||
> | ||
SIGN UP | ||
</a> | ||
</div> | ||
); | ||
} | ||
|
||
export default OpenOfficeHour; |
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 |
---|---|---|
|
@@ -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
Oops, something went wrong.