4
0
forked from crowetic/commerce

Changes to the Hero Component

This commit is contained in:
Belen Curcio 2020-10-23 13:17:52 -03:00
parent eb091f9cd4
commit cb4492e33f

View File

@ -18,11 +18,11 @@ const Hero: FC<Props> = ({ headline, description, className }) => {
<h2 className="text-4xl leading-10 font-extrabold text-white sm:text-5xl sm:leading-none sm:tracking-tight lg:text-6xl"> <h2 className="text-4xl leading-10 font-extrabold text-white sm:text-5xl sm:leading-none sm:tracking-tight lg:text-6xl">
{headline} {headline}
</h2> </h2>
<div> <div className="flex flex-col justify-between">
<p className="mt-5 text-xl leading-7 text-accent-2"> <p className="mt-5 text-xl leading-7 text-accent-2">
{description} {description}
</p> </p>
<a className="block text-white py-3 font-bold hover:underline flex flex-row cursor-pointer"> <a className="block text-white pt-3 font-bold hover:underline flex flex-row cursor-pointer">
<span>Read it here</span> <span>Read it here</span>
<RightArrow width="20" heigh="20" className="ml-1" /> <RightArrow width="20" heigh="20" className="ml-1" />
</a> </a>