Download Call To Action Using Tailwind UI
A ‘Download Call-to-Action’ component crafted with Tailwind presents an eye-catching and effective way to prompt users to download a specific file or take a desired action, enhancing user engagement and conversion.
cta
Loading component...
67 lines
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap"
rel="stylesheet">
<style>
body {
font-family: "Plus Jakarta Sans", sans-serif;
}
</style>
<!-- inspired design by https://www.dimensional.me/?ref=land-book.com -->
<div class="w-full bg-[#FEF7EF] p-12">
<div class="relative px-4 pt-16 mx-auto bg-white rounded-3xl sm:max-w-xl md:max-w-full md:px-8 lg:py-32 xl:px-20">
<div class="max-w-xl mx-auto lg:max-w-screen-xl">
<div class="mb-0 lg:mb-0 lg:max-w-lg">
<div class="max-w-xl mb-6">
<div>
<p
class="inline-block px-3 py-px mb-2 text-xs font-semibold tracking-wider text-green-900 uppercase rounded-full bg-teal-accent-400">
INTRODUCING
</p>
</div>
<h2
class="max-w-lg mb-6 text-3xl font-bold tracking-tight text-gray-700 sm:text-5xl sm:leading-snug">
Know yourself. <br> Connect with others.
</h2>
<p class="text-base text-gray-700 md:text-lg">
Take personality tests. Learn about people in your life. Make new friends.
</p>
</div>
<div class="mb-6">
<a href="/"
class="inline-flex items-center justify-center h-12 px-6 mr-6 font-medium tracking-wide text-white transition duration-200 bg-green-500 rounded shadow-md outline-none hover:bg-green-400 focus:ring">
Stay Connect with Your Friend</a>
</div>
<div>
<span class="text-sm font-medium text-gray-500">Download now at</span>
<div class="flex justify-start mt-2 space-x-4">
<a href="" class="flex items-center w-auto px-4 py-2 bg-black border rounded-lg">
<img src="https://cdn-icons-png.flaticon.com/512/888/888857.png" class="w-7 md:w-8">
<div class="ml-3 text-left">
<p class='text-xs text-gray-200'>Download on </p>
<p class="text-sm text-gray-100 md:text-base"> Google Play Store </p>
</div>
</a>
<a href="" class="flex items-center w-auto px-8 py-2 bg-black border rounded-lg">
<img src="https://cdn-icons-png.flaticon.com/512/888/888841.png" class="w-7 md:w-8">
<div class="ml-3 text-left">
<p class='text-xs text-gray-200'>Download on </p>
<p class="text-sm text-gray-100 md:text-base"> Apple Store </p>
</div>
</a>
</div>
</div>
</div>
</div>
<div
class="flex justify-center h-full overflow-hidden lg:absolute lg:bottom-0 lg:right-0 lg:w-2/3 lg:items-end lg:justify-start xl:w-1/2">
<img src="https://www.dimensional.me/PhoneImage.png"
class="object-cover object-top w-full max-w-xl h-96 rounded-2xl lg:ml-64 lg:-mb-24 lg:h-auto lg:max-w-screen-md xl:ml-0 xl:-mb-32"
alt="" />
</div>
</div>
</div>