project setup

This commit is contained in:
Sone
2025-11-02 10:00:53 +01:00
parent 75bd171804
commit 7cb4c5345e
51 changed files with 3616 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
import Image, { StaticImageData } from "next/image";
interface TeamMemberCardProps {
avatar: StaticImageData;
name: string;
position: string;
}
const TeamMemberCard = ({ avatar, name, position }: TeamMemberCardProps) => {
return (
<div className="flex flex-col items-center gap-3">
<div className="relative w-40 h-40 sm:w-48 sm:h-48 rounded-full border-2 overflow-hidden">
<Image src={avatar} alt={name} className="object-cover" />
</div>
<div className="text-center">
<p
className={`font-mono text-sm ${
position === "Founder" ? "text-white" : "text-[var(--color-7)]"
}`}
>
{name}
</p>
{position !== "Founder" && (
<p className="font-mono text-sm text-[var(--color-10)]">{position}</p>
)}
</div>
</div>
);
};
export default TeamMemberCard;