Does this work?

This commit is contained in:
2025-04-24 12:03:03 -06:00
parent ee44847974
commit f33dc130b8
9 changed files with 203 additions and 14 deletions

View File

@ -11,13 +11,75 @@ import {
export default function TechLinks() {
return (
<div class="flex flex-row gap-4 text-3xl">
<SiReact class="hover:text-primary" />
<SiTypescript class="hover:text-primary" />
<SiDeno class="hover:text-primary" />
<SiGo class="hover:text-primary" />
<SiPostgresql class="hover:text-primary" />
<SiRedis class="hover:text-primary" />
<SiDocker class="hover:text-primary" />
<a
href="https://react.dev/"
target="_blank"
rel="noopener noreferrer"
aria-label="React"
class="hover:text-primary transition-colors"
>
<SiReact />
</a>
<a
href="https://www.typescriptlang.org/"
target="_blank"
rel="noopener noreferrer"
aria-label="TypeScript"
class="hover:text-primary transition-colors"
>
<SiTypescript />
</a>
<a
href="https://deno.com/"
target="_blank"
rel="noopener noreferrer"
aria-label="Deno"
class="hover:text-primary transition-colors"
>
<SiDeno />
</a>
<a
href="https://go.dev/"
target="_blank"
rel="noopener noreferrer"
aria-label="Go"
class="hover:text-primary transition-colors"
>
<SiGo />
</a>
<a
href="https://www.postgresql.org/"
target="_blank"
rel="noopener noreferrer"
aria-label="PostgreSQL"
class="hover:text-primary transition-colors"
>
<SiPostgresql />
</a>
<a
href="https://redis.io/"
target="_blank"
rel="noopener noreferrer"
aria-label="Redis"
class="hover:text-primary transition-colors"
>
<SiRedis />
</a>
<a
href="https://www.docker.com/"
target="_blank"
rel="noopener noreferrer"
aria-label="Docker"
class="hover:text-primary transition-colors"
>
<SiDocker />
</a>
</div>
);
}