feat(skills): lists skills component of portfolio

This commit is contained in:
2026-08-06 22:19:04 +02:00
parent 8e4f01b213
commit 7668100fb6
@@ -0,0 +1,13 @@
import type { ReactElement } from "react";
interface SkillsProps {
label: string;
}
export default function Skills({ label }: SkillsProps): ReactElement {
return (
<span className="border border-ctp-text rounded-full px-3 py-1 text-sm text-ctp-text transition-colors duration-300 hover:border-ctp-green hover:text-ctp-green">
{label}
</span>
);
}