-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ad1134f
commit e5fd407
Showing
2 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<template> | ||
<div class="max-w-3xl mx-auto py-10"> | ||
|
||
<div class="flex flex-col md:flex-row px-2 md:px-0"> | ||
<div | ||
class="w-full md:w-1/3 bg-white rounded-lg shadow hover:shadow-xl transition duration-500 ease-in-out p-6 md:mr-4 mb-10 md:mb-0" | ||
> | ||
<h3 class="text-gray-800 text-lg font-monse">Base</h3> | ||
<p class="text-gray-800 mt-1 font-lora"><span class="font-bold text-black text-4xl">$69</span> /Month</p> | ||
<p class="text-sm text-gray-800 mt-2 font-monse">For most businesses that want to optimize web queries.</p> | ||
<div class="text-sm text-gray-800 mt-4 font-monse"> | ||
<p class="my-2"><span class="fa fa-check-circle mr-2 ml-1"></span> All limited links</p> | ||
<p class="my-2"><span class="fa fa-check-circle mr-2 ml-1"></span> Own analytics platform</p> | ||
<p class="my-2"><span class="fa fa-check-circle mr-2 ml-1"></span> Chat support</p> | ||
<p class="my-2"><span class="fa fa-check-circle mr-2 ml-1"></span> Optimize hashtags</p> | ||
<p class="my-2"><span class="fa fa-check-circle mr-2 ml-1"></span> Unlimited users</p> | ||
</div> | ||
<button | ||
class="w-full font-monse border border-yellow-300 rounded hover:bg-yellow-300 hover:shadow-xl transition duration-500 ease-in-out py-4 mt-4" | ||
> | ||
Choose Plan | ||
</button> | ||
</div> | ||
<div | ||
class="w-full md:w-1/3 bg-yellow-400 rounded-lg shadow hover:shadow-xl transition duration-500 ease-in-out p-6 md:mr-4 mb-10 md:mb-0" | ||
> | ||
<h3 class="text-lg font-monse">Popular</h3> | ||
<p class="mt-1"><span class="font-bold text-4xl font-lora">$99</span> /Month</p> | ||
<p class="text-sm opacity-75 mt-2 font-monse">For most businesses that want to optimize web queries.</p> | ||
<div class="text-sm mt-4 font-monse"> | ||
<p class="my-2"><span class="fa fa-check-circle mr-2 ml-1"></span> All limited links</p> | ||
<p class="my-2"><span class="fa fa-check-circle mr-2 ml-1"></span> Own analytics platform</p> | ||
<p class="my-2"><span class="fa fa-check-circle mr-2 ml-1"></span> Chat support</p> | ||
<p class="my-2"><span class="fa fa-check-circle mr-2 ml-1"></span> Optimize hashtags</p> | ||
<p class="my-2"><span class="fa fa-check-circle mr-2 ml-1"></span> Unlimited users</p> | ||
</div> | ||
<button | ||
class="w-full font-monse bg-white rounded opacity-75 hover:opacity-100 hover:shadow-xl hover:bg-white transition duration-500 ease-in-out py-4 mt-4" | ||
> | ||
Choose Plan | ||
</button> | ||
</div> | ||
<div | ||
class="w-full md:w-1/3 bg-white rounded-lg shadow hover:shadow-xl transition duration-500 ease-in-out p-6 mb-10 md:mb-0" | ||
> | ||
<h3 class="text-gray-800 text-lg font-monse">Enterprise</h3> | ||
<p class="text-gray-800 mt-1"><span class="font-bold text-black text-4xl font-lora">$299</span> /Month</p> | ||
<p class="text-sm text-gray-800 mt-2 font-monse">For most businesses that want to optimize web queries.</p> | ||
<div class="text-sm text-gray-800 mt-4 font-monse"> | ||
<p class="my-2"><span class="fa fa-check-circle mr-2 ml-1"></span> All limited links</p> | ||
<p class="my-2"><span class="fa fa-check-circle mr-2 ml-1"></span> Own analytics platform</p> | ||
<p class="my-2"><span class="fa fa-check-circle mr-2 ml-1"></span> Chat support</p> | ||
<p class="my-2"><span class="fa fa-check-circle mr-2 ml-1"></span> Optimize hashtags</p> | ||
<p class="my-2"><span class="fa fa-check-circle mr-2 ml-1"></span> Unlimited users</p> | ||
</div> | ||
<button | ||
class="w-full font-monse border border-yellow-300 rounded hover:bg-yellow-300 hover:shadow-xl transition duration-500 ease-in-out py-4 mt-4" | ||
> | ||
Choose Plan | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import { defineComponent } from 'vue'; | ||
export default defineComponent({ | ||
}); | ||
</script> | ||
|
||
<style></style> |