Skip to content

Commit

Permalink
fix: open in new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayagoumi committed Feb 29, 2024
1 parent bb0ff0b commit c5e90b6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/components/Footer/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import {
Box,
Button,
Container,
Divider,
Fade,
Expand Down Expand Up @@ -79,7 +78,12 @@ export default function Footer() {
<Grid xs={12} item>
<Box sx={{ display: 'flex' }}>
{SocialMediaLinks.map((link, index) => (
<Link to={link.url} key={index} rel="noopener noreferrer">
<Link
to={link.url}
key={index}
target="_blank"
rel="noopener noreferrer"
>
<Box
sx={{
display: 'flex',
Expand Down Expand Up @@ -114,6 +118,7 @@ export default function Footer() {
{FooterButtons.map((button, index) => (
<Link
to={button.url}
target="_blank"
rel="noopener noreferrer"
key={index}
style={{ textDecoration: 'none' }}
Expand Down

0 comments on commit c5e90b6

Please sign in to comment.