Last active
May 16, 2020 16:06
-
-
Save FarazPatankar/c4f360cd469adaac5f0ab754821097fc to your computer and use it in GitHub Desktop.
Simple centered
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
<div class="flex flex-col items-center bg-white py-10 px-5 w-full"> | |
<h1 class="text-center text-3xl font-bold leading-tight"> | |
<span>Ready to dive in?</span> | |
<br /> | |
<span>Start your free trial today.</span> | |
</h1> | |
<div class="flex space-x-4 mt-5"> | |
<button class="bg-indigo-700 text-white font-medium rounded py-3 px-5">Get started</button> | |
<button class="bg-indigo-200 text-indigo-700 font-medium rounded py-3 px-5">Learn more</button> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment