diff --git a/components/PostCard.tsx b/components/PostCard.tsx index a9c427e..fe94b56 100644 --- a/components/PostCard.tsx +++ b/components/PostCard.tsx @@ -15,32 +15,27 @@ const PostCard = ({ readTime, }: PostType) => { const borderColor = useColorModeValue("blackAlpha.100", "whiteAlpha.200"); - const outerBorderColor = useColorModeValue("transparent", "whiteAlpha.200"); const date = new Date(publishedAt).toLocaleDateString("en-US", { day: "numeric", month: "long", year: "numeric", }); + const bgHoverColor = useColorModeValue("blackAlpha.50", "whiteAlpha.200"); return ( - + { const borderColor = useColorModeValue("blackAlpha.100", "whiteAlpha.200"); const bgHoverColor = useColorModeValue("blackAlpha.50", "whiteAlpha.200"); return ( - + { Some tech stuff and my random thoughts. {filteredBlogPosts.length > 0 ? ( - + {filteredBlogPosts.map((post: PostType, idx: number) => ( ))}