13 lines
403 B
TypeScript
13 lines
403 B
TypeScript
import { LuMail } from "@preact-icons/lu";
|
|
import { SiBluesky, SiForgejo, SiRss } from "@preact-icons/si";
|
|
|
|
export default function TechLinks() {
|
|
return (
|
|
<div class="flex flex-row gap-4 text-3xl">
|
|
<LuMail class="hover:text-primary" />
|
|
<SiRss class="hover:text-primary" />
|
|
<SiForgejo class="hover:text-primary" />
|
|
<SiBluesky class="hover:text-primary" />
|
|
</div>
|
|
);
|
|
}
|