All checks were successful
Docker Deploy / build-and-push (push) Successful in 5m3s
44 lines
1 KiB
TypeScript
44 lines
1 KiB
TypeScript
import { LuMail } from "@preact-icons/lu";
|
|
import { SiBluesky, SiForgejo, SiRss } from "@preact-icons/si";
|
|
|
|
export default function SocialLinks() {
|
|
return (
|
|
<div class="flex flex-row gap-4 text-xl sm:text-3xl">
|
|
<a
|
|
href="mailto:me@atri.dad"
|
|
aria-label="Email me"
|
|
class="hover:text-primary transition-colors"
|
|
>
|
|
<LuMail />
|
|
</a>
|
|
|
|
<a
|
|
href="/feed"
|
|
aria-label="RSS Feed"
|
|
class="hover:text-primary transition-colors"
|
|
>
|
|
<SiRss />
|
|
</a>
|
|
|
|
<a
|
|
href="https://git.atri.dad/atridad"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
aria-label="Forgejo (Git)"
|
|
class="hover:text-primary transition-colors"
|
|
>
|
|
<SiForgejo />
|
|
</a>
|
|
|
|
<a
|
|
href="https://bsky.app/profile/atri.dad"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
aria-label="Bluesky Profile"
|
|
class="hover:text-primary transition-colors"
|
|
>
|
|
<SiBluesky />
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|