Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/CardHome.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export function CardHome({heading, content}) {
return (
<Link href="#" className="block p-6 bg-white border border-gray-200 rounded-lg shadow hover:bg-gray-100 dark:bg-gray-800 dark:border-gray-700 dark:hover:bg-gray-700">
<h5 className="mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white">{heading}</h5>
<p className="font-normal text-gray-700 dark:text-gray-400">{content}</p>
<p className="font-normal text-gray-700 dark:text-gray-400 mx-2 sm:mx-4 sm:my-2">{content}</p>
</Link>
)
}
}