Almost done

This commit is contained in:
2026-03-05 17:35:27 +01:00 Unverified
parent 278471e53b
commit e44fceaf32
30 changed files with 1077 additions and 572 deletions
+23
View File
@@ -0,0 +1,23 @@
// app/components/SocialIcon.tsx
import React from 'react';
interface SocialIconProps {
href: string;
title: string;
children: React.ReactNode;
}
export default function SocialIcon({ href, title, children }: SocialIconProps) {
return (
<a
target="_blank"
rel="noreferrer"
title={title}
href={href}
className="transition-all duration-300 hover:scale-110 active:scale-90 hover:brightness-110"
>
{children}
</a>
);
}