chore: new tab

This commit is contained in:
2023-12-03 15:12:19 +01:00
parent e5aadd075c
commit da8644f7fe

View File

@@ -5,9 +5,9 @@ import { FaExternalLinkAlt } from "react-icons/fa";
export default function ImageAuthor(props: Props) {
return (
<div className='imageAuthor'>
<Link href={props.location}><p>{props.description}</p></Link>
<Link href={props.location} target="_blank"><p>{props.description}</p></Link>
<p>by {props.author}</p>
<Link href={props.url}><FaExternalLinkAlt /></Link>
<Link href={props.url} target="_blank"><FaExternalLinkAlt /></Link>
</div>
)
}