Commit 5b1eeb4
Changed files (2)
src
components
src/components/aside/ProfileCard.astro
@@ -19,7 +19,12 @@ import { Icon } from 'astro-icon/components';
<div class="flex flex-row flex-wrap items-center justify-center gap-2">
{
profileConfig.socialLinks.map((link) => (
- <Button href={link.url} title={link.name} class="btn-circle btn-ghost text-2xl">
+ <Button
+ href={link.url}
+ title={link.name}
+ target="_blank"
+ class="btn-circle btn-ghost text-2xl"
+ >
<Icon name={link.icon} />
</Button>
))