-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Turn off translation for title (#177)
* Turn off translation for title * lint fix
- Loading branch information
1 parent
35b0d21
commit d52d8dc
Showing
3 changed files
with
17 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,13 +14,15 @@ export default function PreLogin() { | |
</button> | ||
</header> | ||
<div className={LoginCSS.firstblock}> | ||
<div className={LoginCSS.piroheader}>Piro Synthesis Analyzer</div> | ||
<div className={LoginCSS.piroheader} translate="no"> | ||
Piro Synthesis Analyzer | ||
</div> | ||
<div className={LoginCSS.firstblockbody}> | ||
The Piro Synthesis Analyzer is an application that assists with rational planning of solid-state synthesis | ||
routes for inorganics. It is a recommendation system for navigation and planning of synthesis of inorganic | ||
materials based on classical nucleation theory and semi-empirical, data-driven approximations to its parts. | ||
Currently, the app works with Materials Project data via its Rester API. Sign in to learn more and use the | ||
tool. | ||
The <span translate="no">Piro Synthesis Analyzer</span> is an application that assists with rational planning | ||
of solid-state synthesis routes for inorganics. It is a recommendation system for navigation and planning of | ||
synthesis of inorganic materials based on classical nucleation theory and semi-empirical, data-driven | ||
approximations to its parts. Currently, the app works with Materials Project data via its Rester API. Sign in | ||
to learn more and use the tool. | ||
</div> | ||
<button className={LoginCSS.signinbutton}> | ||
<div className={LoginCSS.signincontent} onClick={() => Auth.federatedSignIn()}> | ||
|
@@ -60,7 +62,13 @@ export default function PreLogin() { | |
<br></br> | ||
<p className={LoginCSS.thirdblockcontent}> | ||
To request access or if you have questions about logging in, reach out to us at{' '} | ||
<a href="mailto:[email protected]" target="_blank" rel="noreferrer" className={LoginCSS.mailstyle}> | ||
<a | ||
href="mailto:[email protected]" | ||
target="_blank" | ||
rel="noreferrer" | ||
className={LoginCSS.mailstyle} | ||
translate="no" | ||
> | ||
[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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,7 +78,7 @@ const About: React.FC<highlightProps> = ({ highlightedParagraph, highlight }) => | |
</p> | ||
<p className={styles.Content}> | ||
If you have any questions or feedback, please reach out to us at{' '} | ||
<a href="mailto:[email protected]" className={styles.mailstyle}> | ||
<a href="mailto:[email protected]" className={styles.mailstyle} translate="no"> | ||
[email protected] | ||
</a> | ||
. | ||
|