Skip to content

Commit bdc67c1

Browse files
committed
Make links open new windows
1 parent 739a4cd commit bdc67c1

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

app/components/Contact.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ const Contact: React.FC = () => {
88
<p>The Chronos Team is always looking for any feedback or suggestions for Chronos.</p>
99
<p>
1010
You can find issues the team is currently working on&nbsp;
11-
<a href="https://github.com/open-source-labs/Chronos/issues">here</a>.
11+
<a href="https://github.com/open-source-labs/Chronos/issues" target="_blank">
12+
here
13+
</a>
14+
.
1215
</p>
1316
<p>
1417
If you would like your voice heard, fill out the form and we will get back to you ASAP!

app/components/Copyright.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export interface CopyrightProps {}
66
const Copyright = () => (
77
<Typography variant="body2" color="textSecondary" align="center">
88
{'Copyright © '}
9-
<Link color="inherit" href="https://chronoslany.com/">
9+
<Link color="inherit" href="https://chronoslany.com/" target="_blank">
1010
Team Chronos
1111
</Link>{' '}
1212
{new Date().getFullYear()}

0 commit comments

Comments
 (0)