Fix remaining warnings and remove leave necessary social links

This commit is contained in:
Hazem Krimi
2023-03-19 00:39:52 +01:00
parent c97cb80ce8
commit d8c97a2df5
15 changed files with 29 additions and 32 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ interface Props {
const Card: FC<Props> = ({ title, description, image, tags, href, target, onClick }) => {
return (
<StyledCard href={href} onClick={onClick} image={!!image} target={target}>
<StyledCard href={href} onClick={onClick} image={Boolean(image)} target={target}>
<div className='card-content'>
<h3>{title}</h3>
<p>{description}</p>