Skip to content

Commit

Permalink
🐛 Fix exec keys
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshHeng committed Aug 2, 2024
1 parent ddd4f0f commit 172f4a7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/home/the-exec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ export default function TheExec() {
</p>
<div className="flex flex-wrap gap-2 mt-2">
{exec.map((member) => (
<article className="overflow-hidden rounded-xl flex w-32 flex-grow sm:flex-grow-0 sm:w-44 max-w-44 flex-col dark:border-white border-black border-2">
<article
key={member.name}
className="overflow-hidden rounded-xl flex w-32 flex-grow sm:flex-grow-0 sm:w-44 max-w-44 flex-col dark:border-white border-black border-2"
>
<header className="bg-black h-10 flex justify-center items-center">
<div className="rounded-2xl w-12 h-3 mt-0.5 bg-white" />
</header>
Expand Down

0 comments on commit 172f4a7

Please sign in to comment.