feat: cards

This commit is contained in:
Alejandro Gomez
2023-07-26 10:27:06 +02:00
parent 9e437c6425
commit 7a6f4048fb
16 changed files with 1324 additions and 11 deletions

View File

@ -0,0 +1,7 @@
export function ExternalLink({ children, href }) {
return (
<a href={href} rel="noopener noreferrer" target="_blank">
{children}
</a>
)
}