-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
49 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
const HistoryCard = () => { | ||
return ( | ||
<div className="card border border-gray-400"> | ||
<div className="card-body p-3"> | ||
<h2 className="card-title leading-none">Legs</h2> | ||
<h5 className="text-sm text-gray-400">November 2</h5> | ||
<div className="mt-2 flex items-center"> | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" className="w-5 h-5"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm.75-13a.75.75 0 00-1.5 0v5c0 .414.336.75.75.75h4a.75.75 0 000-1.5h-3.25V5z" clipRule="evenodd" /></svg> | ||
<p className="ms-2">52m</p> | ||
</div> | ||
<div className="mt-2 flex justify-between"> | ||
<h2 className="card-title text-base leading-none">Exercise</h2> | ||
<h2 className="card-title text-base leading-none">Best set</h2> | ||
</div> | ||
<div className="leading-none"> | ||
<div className="flex justify-between"> | ||
<h5 className="text-sm text-gray-400">3 x Hack Squat</h5> | ||
<h5 className="text-sm text-gray-400">30 kg x 12</h5> | ||
</div> | ||
<div className="flex justify-between"> | ||
<h5 className="text-sm text-gray-400">3 x Leg Extension (Machine)</h5> | ||
<h5 className="text-sm text-gray-400">30 kg x 18</h5> | ||
</div> | ||
<div className="flex justify-between"> | ||
<h5 className="text-sm text-gray-400">3 x Romanian Deadlift (Barbell)</h5> | ||
<h5 className="text-sm text-gray-400">10 kg x 13</h5> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default HistoryCard; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters