diff --git a/src/components/Contributors.tsx b/src/components/Contributors.tsx index 990cb46..1ca9030 100644 --- a/src/components/Contributors.tsx +++ b/src/components/Contributors.tsx @@ -1,6 +1,7 @@ import React from 'react'; import styled from 'styled-components'; import useSWR from 'swr'; +import Tooltip from 'rc-tooltip'; export interface IContributors { projectName: string; @@ -37,15 +38,23 @@ const Contributors: React.FC = () => { return ( {data.contributors.map((contributor) => ( - - - - - + + + + + + + ))} );