Tracking page

This commit is contained in:
2023-02-08 18:22:22 -05:00
parent b4dba45fae
commit aed4e7feaa
6 changed files with 54 additions and 16 deletions
+7 -5
View File
@@ -16,7 +16,7 @@ export default function TrackItemCard({ datas, hidden = false }) {
}
};
return (
<div className="card-style-one flex flex-col justify-between w-full h-[187px] bg-white dark:bg-dark-white p-3 pb rounded-2xl">
<div className="card-style-one flex flex-col justify-between w-full h-[240px] bg-white dark:bg-dark-white p-3 pb rounded-2xl">
<div className="content">
{/* thumbnail */}
<div className="w-full h-40">
@@ -95,14 +95,16 @@ export default function TrackItemCard({ datas, hidden = false }) {
/>
</div>
<p className="text-sm text-thin-light-gray dark:text-white">
Owned by
<Link to="/user-profile" className="text-purple ml-1">
{datas.username}
<Link
to={`/${datas.widget}`}
className="text-xl font-bold text-dark-gray dark:text-white mb-2 capitalize line-clamp-1"
>
{datas.title}
</Link>
</p>
</div>
</div>
</div>
</div>
);