1
0
mirror of https://github.com/covidpass-org/covidpass.git synced 2025-02-18 04:30:53 +01:00
Hauke Tönjes c38718cb50
Design polish etc.
- dark Mode (media)
- responsive for larger screens
- logo and navigation on every page
- next/link in main navigation
2021-06-28 18:17:16 +02:00

22 lines
613 B
JavaScript

export default Card
function Card({ heading, content, step }) {
return (
<div className="rounded-md p-6 bg-white dark:bg-gray-800 space-y-4">
{step &&
<div className="flex flex-row items-center">
<div className="rounded-full p-4 bg-green-600 h-5 w-5 flex items-center justify-center">
<p className="text-white text-lg font-bold">
{step}
</p>
</div>
<div className="ml-3 font-bold text-xl">
{heading}
</div>
</div>}
<div className="text-lg">
{content}
</div>
</div>
)
}