mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 22:14:30 +08:00
16 lines
410 B
TypeScript
16 lines
410 B
TypeScript
import Image from 'next/image'
|
|
export default function Sponsor({ imageUrl, handle }: { imageUrl: string; handle: string }) {
|
|
return (
|
|
<div className="my-4 flex h-14 w-44 flex-row items-center">
|
|
<Image
|
|
className="mr-2 rounded-full"
|
|
src={`https://github.com/${handle}.png`}
|
|
alt={handle}
|
|
width={32}
|
|
height={32}
|
|
/>
|
|
<h5>{handle}</h5>
|
|
</div>
|
|
)
|
|
}
|