Upgrade all possible dependencies

This commit is contained in:
Nathan Chapman
2024-02-21 16:09:08 -06:00
parent 1f011fd194
commit a2442e0095
38 changed files with 3059 additions and 2497 deletions
+2 -2
View File
@@ -30,7 +30,7 @@ type FeedCardProps = {
const FeedCard = ({ title, type, text, author, authorAvatar, image }: FeedCardProps) => (
<Card className="my-4 mx-auto">
<div className="h-32 w-full relative">
<img className="rounded-t-xl object-cover min-w-full min-h-full max-w-full max-h-full" src={image} alt="" />
<Image className="rounded-t-xl object-cover min-w-full min-h-full max-w-full max-h-full" src={image} alt="" fill />
</div>
<div className="px-4 py-4 bg-white rounded-b-xl dark:bg-gray-900">
<h4 className="font-bold py-0 text-s text-gray-400 dark:text-gray-500 uppercase">{type}</h4>
@@ -38,7 +38,7 @@ const FeedCard = ({ title, type, text, author, authorAvatar, image }: FeedCardPr
<p className="sm:text-sm text-s text-gray-500 mr-1 my-3 dark:text-gray-400">{text}</p>
<div className="flex items-center space-x-4">
<div className="w-10 h-10 relative">
<img src={authorAvatar} className="rounded-full object-cover min-w-full min-h-full max-w-full max-h-full" alt="" />
<Image src={authorAvatar} className="rounded-full object-cover min-w-full min-h-full max-w-full max-h-full" alt="" fill />
</div>
<h3 className="text-gray-500 dark:text-gray-200 m-l-8 text-sm font-medium">{author}</h3>
</div>