export default function Time(props) { return (
<section className="text-center p-8" style={{ backgroundColor: props.corSecundaria }}>
<p className="inline-block pb-2 text-[32px] font-bold border-b-4">
{props.nome}
</p>
</section>
);
}