pricing components added

This commit is contained in:
Donfreddy 2021-05-29 16:40:01 +01:00
parent 6cbed66006
commit 13fb899213
4 changed files with 479 additions and 43 deletions

View file

@ -1,13 +1,29 @@
<template> <template>
<div class="container px-6 mx-auto"> <div class="container px-6 mx-auto">
<div class="py-16 text-center"> <div class="py-16 text-center">
<h1 class="text-xl font-medium text-gray-800 md:text-3xl dark:text-white">Discover new components. Build amazing things 🔥</h1> <h1
class="text-xl font-medium text-gray-800 md:text-3xl dark:text-white"
>
Discover new components. Build amazing things 🔥
</h1>
<div class="max-w-2xl mx-auto"> <div class="max-w-2xl mx-auto">
<div class="flex items-center justify-center mt-5 "> <div class="flex items-center justify-center mt-5">
<div class="mt-2 md:mt-0"> <div class="mt-2 md:mt-0">
<span v-for="category in categories" :key="category.name"> <span
<app-button @click="searchText = category.name" class="px-3 py-1 mt-2 ml-2 text-sm rounded cursor-pointer hover:bg-gray-700 hover:text-gray-200 dark:hover:bg-gray-600 dark:hover:text-gray-200 focus:outline-none" :class="category.name === searchText? 'bg-gray-700 text-gray-200 dark:bg-gray-600 dark:text-gray-200' : 'bg-gray-200 text-gray-700 dark:bg-gray-800 dark:text-gray-200'">{{ category.name }}</app-button> v-for="category in categories"
</span> :key="category.name"
>
<app-button
@click="searchText = category.name"
class="px-3 py-1 mt-2 ml-2 text-sm rounded cursor-pointer hover:bg-gray-700 hover:text-gray-200 dark:hover:bg-gray-600 dark:hover:text-gray-200 focus:outline-none"
:class="
category.name === searchText
? 'bg-gray-700 text-gray-200 dark:bg-gray-600 dark:text-gray-200'
: 'bg-gray-200 text-gray-700 dark:bg-gray-800 dark:text-gray-200'
"
>{{ category.name }}</app-button
>
</span>
</div> </div>
</div> </div>
</div> </div>
@ -19,9 +35,16 @@
<div class="w-full max-w-6xl mx-auto"> <div class="w-full max-w-6xl mx-auto">
<div class="mb-16" v-for="category in list" :key="category.name"> <div class="mb-16" v-for="category in list" :key="category.name">
<h1 class="mb-6 text-2xl font-semibold text-gray-800 capitalize dark:text-white" v-text="category.name"></h1> <h1
class="mb-6 text-2xl font-semibold text-gray-800 capitalize dark:text-white"
v-text="category.name"
></h1>
<div v-for="component in category.components" :key="component.name" :name="component.name"> <div
v-for="component in category.components"
:key="component.name"
:name="component.name"
>
<component :is="category.name + component.name"></component> <component :is="category.name + component.name"></component>
</div> </div>
</div> </div>
@ -89,6 +112,8 @@ import SectionsAboutMe from "./ui/Sections/AboutMe";
import SectionsFeature from "./ui/Sections/Feature"; import SectionsFeature from "./ui/Sections/Feature";
import SectionsOurTeam from "./ui/Sections/OurTeam"; import SectionsOurTeam from "./ui/Sections/OurTeam";
import SectionsParagraphWithImage from "./ui/Sections/ParagraphWithImage"; import SectionsParagraphWithImage from "./ui/Sections/ParagraphWithImage";
// Pricing
import PricingsSimple from "./ui//Pricings/Simple";
// paginations // paginations
import PaginationsSimple from "./ui/Paginations/Simple"; import PaginationsSimple from "./ui/Paginations/Simple";
// Footers // Footers
@ -148,6 +173,7 @@ export default {
SectionsFeature, SectionsFeature,
SectionsOurTeam, SectionsOurTeam,
SectionsParagraphWithImage, SectionsParagraphWithImage,
PricingsSimple,
PaginationsSimple, PaginationsSimple,
FootersSimple, FootersSimple,
FootersWithDetails, FootersWithDetails,
@ -157,9 +183,10 @@ export default {
data() { data() {
return { return {
categories: [], categories: [],
searchText: 'Alerts', // searchText: "Alerts",
searchText: "Pricings",
component: new Component(), component: new Component(),
} };
}, },
created() { created() {
@ -171,5 +198,5 @@ export default {
return this.component.whereCategory(this.searchText); return this.component.whereCategory(this.searchText);
}, },
}, },
} };
</script> </script>

View file

@ -1,37 +1,68 @@
<template> <template>
<view-component :name="name" :code="code"> <view-component :name="name" :code="code">
<div class="py-6" slot="component"> <div class="py-6" slot="component">
<footer class="flex flex-col items-center justify-between px-6 py-4 bg-white dark:bg-gray-800 sm:flex-row"> <footer
<a href="#" class="text-xl font-bold text-gray-800 dark:text-white hover:text-gray-700 dark:hover:text-gray-300">Brand</a> class="flex flex-col items-center justify-between px-6 py-4 bg-white dark:bg-gray-800 sm:flex-row"
>
<p class="py-2 text-gray-800 dark:text-white sm:py-0">All rights reserved</p> <a
href="#"
class="text-xl font-bold text-gray-800 dark:text-white hover:text-gray-700 dark:hover:text-gray-300"
>Brand</a
>
<p class="py-2 text-gray-800 dark:text-white sm:py-0">
All rights reserved
</p>
<div class="flex -mx-2"> <div class="flex -mx-2">
<a href="#" class="mx-2 text-gray-600 dark:text-gray-300 hover:text-gray-500 dark:hover:text-gray-300" aria-label="Reddit"> <a
<svg class="w-5 h-5 fill-current" viewBox="0 0 24 24" fill="none" href="#"
xmlns="http://www.w3.org/2000/svg"> class="mx-2 text-gray-600 dark:text-gray-300 hover:text-gray-500 dark:hover:text-gray-300"
aria-label="Reddit"
>
<svg
class="w-5 h-5 fill-current"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path <path
d="M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C21.9939 17.5203 17.5203 21.9939 12 22ZM6.807 10.543C6.20862 10.5433 5.67102 10.9088 5.45054 11.465C5.23006 12.0213 5.37133 12.6558 5.807 13.066C5.92217 13.1751 6.05463 13.2643 6.199 13.33C6.18644 13.4761 6.18644 13.6229 6.199 13.769C6.199 16.009 8.814 17.831 12.028 17.831C15.242 17.831 17.858 16.009 17.858 13.769C17.8696 13.6229 17.8696 13.4761 17.858 13.33C18.4649 13.0351 18.786 12.3585 18.6305 11.7019C18.475 11.0453 17.8847 10.5844 17.21 10.593H17.157C16.7988 10.6062 16.458 10.7512 16.2 11C15.0625 10.2265 13.7252 9.79927 12.35 9.77L13 6.65L15.138 7.1C15.1931 7.60706 15.621 7.99141 16.131 7.992C16.1674 7.99196 16.2038 7.98995 16.24 7.986C16.7702 7.93278 17.1655 7.47314 17.1389 6.94094C17.1122 6.40873 16.6729 5.991 16.14 5.991C16.1022 5.99191 16.0645 5.99491 16.027 6C15.71 6.03367 15.4281 6.21641 15.268 6.492L12.82 6C12.7983 5.99535 12.7762 5.993 12.754 5.993C12.6094 5.99472 12.4851 6.09583 12.454 6.237L11.706 9.71C10.3138 9.7297 8.95795 10.157 7.806 10.939C7.53601 10.6839 7.17843 10.5422 6.807 10.543ZM12.18 16.524C12.124 16.524 12.067 16.524 12.011 16.524C11.955 16.524 11.898 16.524 11.842 16.524C11.0121 16.5208 10.2054 16.2497 9.542 15.751C9.49626 15.6958 9.47445 15.6246 9.4814 15.5533C9.48834 15.482 9.52348 15.4163 9.579 15.371C9.62737 15.3318 9.68771 15.3102 9.75 15.31C9.81233 15.31 9.87275 15.3315 9.921 15.371C10.4816 15.7818 11.159 16.0022 11.854 16C11.9027 16 11.9513 16 12 16C12.059 16 12.119 16 12.178 16C12.864 16.0011 13.5329 15.7863 14.09 15.386C14.1427 15.3322 14.2147 15.302 14.29 15.302C14.3653 15.302 14.4373 15.3322 14.49 15.386C14.5985 15.4981 14.5962 15.6767 14.485 15.786V15.746C13.8213 16.2481 13.0123 16.5208 12.18 16.523V16.524ZM14.307 14.08H14.291L14.299 14.041C13.8591 14.011 13.4994 13.6789 13.4343 13.2429C13.3691 12.8068 13.6162 12.3842 14.028 12.2269C14.4399 12.0697 14.9058 12.2202 15.1478 12.5887C15.3899 12.9572 15.3429 13.4445 15.035 13.76C14.856 13.9554 14.6059 14.0707 14.341 14.08H14.306H14.307ZM9.67 14C9.11772 14 8.67 13.5523 8.67 13C8.67 12.4477 9.11772 12 9.67 12C10.2223 12 10.67 12.4477 10.67 13C10.67 13.5523 10.2223 14 9.67 14Z"> d="M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C21.9939 17.5203 17.5203 21.9939 12 22ZM6.807 10.543C6.20862 10.5433 5.67102 10.9088 5.45054 11.465C5.23006 12.0213 5.37133 12.6558 5.807 13.066C5.92217 13.1751 6.05463 13.2643 6.199 13.33C6.18644 13.4761 6.18644 13.6229 6.199 13.769C6.199 16.009 8.814 17.831 12.028 17.831C15.242 17.831 17.858 16.009 17.858 13.769C17.8696 13.6229 17.8696 13.4761 17.858 13.33C18.4649 13.0351 18.786 12.3585 18.6305 11.7019C18.475 11.0453 17.8847 10.5844 17.21 10.593H17.157C16.7988 10.6062 16.458 10.7512 16.2 11C15.0625 10.2265 13.7252 9.79927 12.35 9.77L13 6.65L15.138 7.1C15.1931 7.60706 15.621 7.99141 16.131 7.992C16.1674 7.99196 16.2038 7.98995 16.24 7.986C16.7702 7.93278 17.1655 7.47314 17.1389 6.94094C17.1122 6.40873 16.6729 5.991 16.14 5.991C16.1022 5.99191 16.0645 5.99491 16.027 6C15.71 6.03367 15.4281 6.21641 15.268 6.492L12.82 6C12.7983 5.99535 12.7762 5.993 12.754 5.993C12.6094 5.99472 12.4851 6.09583 12.454 6.237L11.706 9.71C10.3138 9.7297 8.95795 10.157 7.806 10.939C7.53601 10.6839 7.17843 10.5422 6.807 10.543ZM12.18 16.524C12.124 16.524 12.067 16.524 12.011 16.524C11.955 16.524 11.898 16.524 11.842 16.524C11.0121 16.5208 10.2054 16.2497 9.542 15.751C9.49626 15.6958 9.47445 15.6246 9.4814 15.5533C9.48834 15.482 9.52348 15.4163 9.579 15.371C9.62737 15.3318 9.68771 15.3102 9.75 15.31C9.81233 15.31 9.87275 15.3315 9.921 15.371C10.4816 15.7818 11.159 16.0022 11.854 16C11.9027 16 11.9513 16 12 16C12.059 16 12.119 16 12.178 16C12.864 16.0011 13.5329 15.7863 14.09 15.386C14.1427 15.3322 14.2147 15.302 14.29 15.302C14.3653 15.302 14.4373 15.3322 14.49 15.386C14.5985 15.4981 14.5962 15.6767 14.485 15.786V15.746C13.8213 16.2481 13.0123 16.5208 12.18 16.523V16.524ZM14.307 14.08H14.291L14.299 14.041C13.8591 14.011 13.4994 13.6789 13.4343 13.2429C13.3691 12.8068 13.6162 12.3842 14.028 12.2269C14.4399 12.0697 14.9058 12.2202 15.1478 12.5887C15.3899 12.9572 15.3429 13.4445 15.035 13.76C14.856 13.9554 14.6059 14.0707 14.341 14.08H14.306H14.307ZM9.67 14C9.11772 14 8.67 13.5523 8.67 13C8.67 12.4477 9.11772 12 9.67 12C10.2223 12 10.67 12.4477 10.67 13C10.67 13.5523 10.2223 14 9.67 14Z"
</path> ></path>
</svg> </svg>
</a> </a>
<a href="#" class="mx-2 text-gray-600 dark:text-gray-300 hover:text-gray-500 dark:hover:text-gray-300" <a
aria-label="Facebook"> href="#"
<svg class="w-5 h-5 fill-current" viewBox="0 0 24 24" fill="none" class="mx-2 text-gray-600 dark:text-gray-300 hover:text-gray-500 dark:hover:text-gray-300"
xmlns="http://www.w3.org/2000/svg"> aria-label="Facebook"
>
<svg
class="w-5 h-5 fill-current"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path <path
d="M2.00195 12.002C2.00312 16.9214 5.58036 21.1101 10.439 21.881V14.892H7.90195V12.002H10.442V9.80204C10.3284 8.75958 10.6845 7.72064 11.4136 6.96698C12.1427 6.21332 13.1693 5.82306 14.215 5.90204C14.9655 5.91417 15.7141 5.98101 16.455 6.10205V8.56104H15.191C14.7558 8.50405 14.3183 8.64777 14.0017 8.95171C13.6851 9.25566 13.5237 9.68693 13.563 10.124V12.002H16.334L15.891 14.893H13.563V21.881C18.8174 21.0506 22.502 16.2518 21.9475 10.9611C21.3929 5.67041 16.7932 1.73997 11.4808 2.01722C6.16831 2.29447 2.0028 6.68235 2.00195 12.002Z"> d="M2.00195 12.002C2.00312 16.9214 5.58036 21.1101 10.439 21.881V14.892H7.90195V12.002H10.442V9.80204C10.3284 8.75958 10.6845 7.72064 11.4136 6.96698C12.1427 6.21332 13.1693 5.82306 14.215 5.90204C14.9655 5.91417 15.7141 5.98101 16.455 6.10205V8.56104H15.191C14.7558 8.50405 14.3183 8.64777 14.0017 8.95171C13.6851 9.25566 13.5237 9.68693 13.563 10.124V12.002H16.334L15.891 14.893H13.563V21.881C18.8174 21.0506 22.502 16.2518 21.9475 10.9611C21.3929 5.67041 16.7932 1.73997 11.4808 2.01722C6.16831 2.29447 2.0028 6.68235 2.00195 12.002Z"
</path> ></path>
</svg> </svg>
</a> </a>
<a href="#" class="mx-2 text-gray-600 dark:text-gray-300 hover:text-gray-500 dark:hover:text-gray-300" aria-label="Github"> <a
<svg class="w-5 h-5 fill-current" viewBox="0 0 24 24" fill="none" href="#"
xmlns="http://www.w3.org/2000/svg"> class="mx-2 text-gray-600 dark:text-gray-300 hover:text-gray-500 dark:hover:text-gray-300"
aria-label="Github"
>
<svg
class="w-5 h-5 fill-current"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path <path
d="M12.026 2C7.13295 1.99937 2.96183 5.54799 2.17842 10.3779C1.395 15.2079 4.23061 19.893 8.87302 21.439C9.37302 21.529 9.55202 21.222 9.55202 20.958C9.55202 20.721 9.54402 20.093 9.54102 19.258C6.76602 19.858 6.18002 17.92 6.18002 17.92C5.99733 17.317 5.60459 16.7993 5.07302 16.461C4.17302 15.842 5.14202 15.856 5.14202 15.856C5.78269 15.9438 6.34657 16.3235 6.66902 16.884C6.94195 17.3803 7.40177 17.747 7.94632 17.9026C8.49087 18.0583 9.07503 17.99 9.56902 17.713C9.61544 17.207 9.84055 16.7341 10.204 16.379C7.99002 16.128 5.66202 15.272 5.66202 11.449C5.64973 10.4602 6.01691 9.5043 6.68802 8.778C6.38437 7.91731 6.42013 6.97325 6.78802 6.138C6.78802 6.138 7.62502 5.869 9.53002 7.159C11.1639 6.71101 12.8882 6.71101 14.522 7.159C16.428 5.868 17.264 6.138 17.264 6.138C17.6336 6.97286 17.6694 7.91757 17.364 8.778C18.0376 9.50423 18.4045 10.4626 18.388 11.453C18.388 15.286 16.058 16.128 13.836 16.375C14.3153 16.8651 14.5612 17.5373 14.511 18.221C14.511 19.555 14.499 20.631 14.499 20.958C14.499 21.225 14.677 21.535 15.186 21.437C19.8265 19.8884 22.6591 15.203 21.874 10.3743C21.089 5.54565 16.9181 1.99888 12.026 2Z"> d="M12.026 2C7.13295 1.99937 2.96183 5.54799 2.17842 10.3779C1.395 15.2079 4.23061 19.893 8.87302 21.439C9.37302 21.529 9.55202 21.222 9.55202 20.958C9.55202 20.721 9.54402 20.093 9.54102 19.258C6.76602 19.858 6.18002 17.92 6.18002 17.92C5.99733 17.317 5.60459 16.7993 5.07302 16.461C4.17302 15.842 5.14202 15.856 5.14202 15.856C5.78269 15.9438 6.34657 16.3235 6.66902 16.884C6.94195 17.3803 7.40177 17.747 7.94632 17.9026C8.49087 18.0583 9.07503 17.99 9.56902 17.713C9.61544 17.207 9.84055 16.7341 10.204 16.379C7.99002 16.128 5.66202 15.272 5.66202 11.449C5.64973 10.4602 6.01691 9.5043 6.68802 8.778C6.38437 7.91731 6.42013 6.97325 6.78802 6.138C6.78802 6.138 7.62502 5.869 9.53002 7.159C11.1639 6.71101 12.8882 6.71101 14.522 7.159C16.428 5.868 17.264 6.138 17.264 6.138C17.6336 6.97286 17.6694 7.91757 17.364 8.778C18.0376 9.50423 18.4045 10.4626 18.388 11.453C18.388 15.286 16.058 16.128 13.836 16.375C14.3153 16.8651 14.5612 17.5373 14.511 18.221C14.511 19.555 14.499 20.631 14.499 20.958C14.499 21.225 14.677 21.535 15.186 21.437C19.8265 19.8884 22.6591 15.203 21.874 10.3743C21.089 5.54565 16.9181 1.99888 12.026 2Z"
</path> ></path>
</svg> </svg>
</a> </a>
</div> </div>
@ -41,11 +72,11 @@
</template> </template>
<script> <script>
export default { export default {
data() { data() {
return { return {
name: 'Simple', name: "Simple",
code: ` code: `
<footer class="flex flex-col items-center justify-between px-6 py-4 bg-white dark:bg-gray-800 sm:flex-row"> <footer class="flex flex-col items-center justify-between px-6 py-4 bg-white dark:bg-gray-800 sm:flex-row">
<a href="#" class="text-xl font-bold text-gray-800 dark:text-white hover:text-gray-700 dark:hover:text-gray-300">Brand</a> <a href="#" class="text-xl font-bold text-gray-800 dark:text-white hover:text-gray-700 dark:hover:text-gray-300">Brand</a>
@ -81,7 +112,7 @@
</a> </a>
</div> </div>
</footer>`, </footer>`,
} };
} },
} };
</script> </script>

View file

@ -0,0 +1,374 @@
<template>
<view-component :name="name" :code="code">
<div class="py-6" slot="component">
<div class="bg-white dark:bg-gray-800">
<div class="container px-6 py-8 mx-auto">
<div
class="
flex flex-col
items-center
justify-center
space-y-8
lg:flex-row
lg:items-stretch
lg:space-x-8 lg:space-y-0
"
>
<div
class="
flex flex-col
w-full
max-w-sm
text-center
p-8
space-y-8
bg-white
dark:bg-gray-800
border-2 border-gray-200
dark:border-gray-700
"
>
<div class="flex-shrink-0">
<h2
class="
inline-flex
items-center
justify-center
uppercase
bg-gray-50
dark:bg-gray-700
px-2
font-semibold
tracking-tight
text-blue-400
"
>
Casual
</h2>
</div>
<div class="flex-shrink-0">
<span
class="
text-gray-800
dark:text-gray-100
text-4xl
pt-2
uppercase
font-bold
"
>
Free
</span>
</div>
<ul class="flex-1 space-y-4">
<li class="text-gray-500 dark:text-gray-400">
Up to 5 projects
</li>
<li class="text-gray-500 dark:text-gray-400">
Up to 10 collaborators
</li>
<li class="text-gray-500 dark:text-gray-400">
2Gb of storage
</li>
</ul>
<button
class="
inline-flex
items-center
justify-center
uppercase
bg-blue-500
py-2
px-4
text-white
transition-colors
hover:bg-blue-700
font-semibold
focus:outline-none
"
>
Start free
</button>
</div>
<div
class="
flex flex-col
w-full
max-w-sm
text-center
p-8
space-y-8
bg-white
dark:bg-gray-800
border-2 border-gray-200
dark:border-gray-700
"
>
<div class="flex-shrink-0">
<h2
class="
inline-flex
items-center
justify-center
uppercase
bg-gray-50
dark:bg-gray-700
px-2
font-semibold
tracking-tight
text-blue-400
"
>
Profesional
</h2>
</div>
<div class="flex-shrink-0">
<span
class="
text-gray-800
dark:text-gray-100
text-4xl
pt-2
uppercase
font-bold
"
>
$24.90
</span>
<span class="text-gray-500 dark:text-gray-400">
/month
</span>
</div>
<ul class="flex-1 space-y-4">
<li class="text-gray-500 dark:text-gray-400">
Up to 10 projects
</li>
<li class="text-gray-500 dark:text-gray-400">
Up to 20 collaborators
</li>
<li class="text-gray-500 dark:text-gray-400">
10Gb of storage
</li>
<li class="text-gray-500 dark:text-gray-400">
Real-time collaborations
</li>
</ul>
<button
class="
inline-flex
items-center
justify-center
uppercase
bg-blue-500
py-2
px-4
text-white
transition-colors
hover:bg-blue-700
font-semibold
focus:outline-none
"
>
Start free trial
</button>
</div>
<div
class="
flex flex-col
w-full
max-w-sm
text-center
p-8
space-y-8
bg-white
dark:bg-gray-800
border-2 border-gray-200
dark:border-gray-700
"
>
<div class="flex-shrink-0">
<h2
class="
inline-flex
items-center
justify-center
uppercase
bg-gray-50
dark:bg-gray-700
px-2
font-semibold
tracking-tight
text-blue-400
"
>
Expert
</h2>
</div>
<div class="flex-shrink-0">
<span
class="
text-gray-800
dark:text-gray-100
text-4xl
pt-2
uppercase
font-bold
"
>
$49.90
</span>
<span class="text-gray-500 dark:text-gray-400">
/month
</span>
</div>
<ul class="flex-1 space-y-4">
<li class="text-gray-500 dark:text-gray-400">
Unlimited projects
</li>
<li class="text-gray-500 dark:text-gray-400">
Unlimited collaborators
</li>
<li class="text-gray-500 dark:text-gray-400">
Unlimited storage
</li>
<li class="text-gray-500 dark:text-gray-400">
Real-time collaborations
</li>
<li class="text-gray-500 dark:text-gray-400">
24x7 Support
</li>
</ul>
<button
class="
inline-flex
items-center
justify-center
uppercase
bg-blue-500
py-2
px-4
text-white
transition-colors
hover:bg-blue-700
font-semibold
focus:outline-none
"
>
Start free trial
</button>
</div>
</div>
</div>
</div>
</div>
</view-component>
</template>
<script>
export default {
data() {
return {
name: "Simple",
code: `
<div class="bg-white dark:bg-gray-800">
<div class="container px-6 py-8 mx-auto">
<div
class="flex flex-col items-center justify-center space-y-8 lg:flex-row lg:items-stretch lg:space-x-8 lg:space-y-0"
>
<div
class="flex flex-col w-full max-w-sm text-center p-8 space-y-8 bg-white dark:bg-gray-800 border-2 border-gray-200 dark:border-gray-700"
>
<div class="flex-shrink-0">
<h2
class="inline-flex items-center justify-center uppercase bg-gray-50 dark:bg-gray-700 px-2 font-semibold tracking-tight text-blue-400"
>
Casual
</h2>
</div>
<div class="flex-shrink-0">
<span class="text-gray-800 dark:text-gray-100 text-4xl pt-2 uppercase font-bold">
Free
</span>
</div>
<ul class="flex-1 space-y-4">
<li class="text-gray-500 dark:text-gray-400">Up to 5 projects</li>
<li class="text-gray-500 dark:text-gray-400">Up to 10 collaborators</li>
<li class="text-gray-500 dark:text-gray-400">2Gb of storage</li>
</ul>
<button
class="inline-flex items-center justify-center uppercase bg-blue-500 py-2 px-4 text-white transition-colors hover:bg-blue-700 font-semibold focus:outline-none"
>
Start free
</button>
</div>
<div
class="flex flex-col w-full max-w-sm text-center p-8 space-y-8 bg-white dark:bg-gray-800 border-2 border-gray-200 dark:border-gray-700"
>
<div class="flex-shrink-0">
<h2
class="inline-flex items-center justify-center uppercase bg-gray-50 dark:bg-gray-700 px-2 font-semibold tracking-tight text-blue-400"
>
Profesional
</h2>
</div>
<div class="flex-shrink-0">
<span class="text-gray-800 dark:text-gray-100 text-4xl pt-2 uppercase font-bold">
$24.90
</span>
<span class="text-gray-500 dark:text-gray-400"> /month </span>
</div>
<ul class="flex-1 space-y-4">
<li class="text-gray-500 dark:text-gray-400">Up to 10 projects</li>
<li class="text-gray-500 dark:text-gray-400">Up to 20 collaborators</li>
<li class="text-gray-500 dark:text-gray-400">10Gb of storage</li>
<li class="text-gray-500 dark:text-gray-400">Real-time collaborations</li>
</ul>
<button
class="inline-flex items-center justify-center uppercase bg-blue-500 py-2 px-4 text-white transition-colors hover:bg-blue-700 font-semibold focus:outline-none"
>
Start free trial
</button>
</div>
<div
class="flex flex-col w-full max-w-sm text-center p-8 space-y-8 bg-white dark:bg-gray-800 border-2 border-gray-200 dark:border-gray-700"
>
<div class="flex-shrink-0">
<h2
class="inline-flex items-center justify-center uppercase bg-gray-50 dark:bg-gray-700 px-2 font-semibold tracking-tight text-blue-400"
>
Expert
</h2>
</div>
<div class="flex-shrink-0">
<span class="text-gray-800 dark:text-gray-100 text-4xl pt-2 uppercase font-bold">
$49.90
</span>
<span class="text-gray-500 dark:text-gray-400"> /month </span>
</div>
<ul class="flex-1 space-y-4">
<li class="text-gray-500 dark:text-gray-400">Unlimited projects</li>
<li class="text-gray-500 dark:text-gray-400">Unlimited collaborators</li>
<li class="text-gray-500 dark:text-gray-400">Unlimited storage</li>
<li class="text-gray-500 dark:text-gray-400">Real-time collaborations</li>
<li class="text-gray-500 dark:text-gray-400">24x7 Support</li>
</ul>
<button
class="inline-flex items-center justify-center uppercase bg-blue-500 py-2 px-4 text-white transition-colors hover:bg-blue-700 font-semibold focus:outline-none"
>
Start free trial
</button>
</div>
</div>
</div>
</div>
`,
};
},
};
</script>

View file

@ -16,9 +16,9 @@ export default [
{ {
name: "Authentication", name: "Authentication",
components: [ components: [
{ name: "SimpleLogin" }, { name: "SimpleLogin" },
{ name: "LoginWithSocailMediaLinks" }, { name: "LoginWithSocailMediaLinks" },
{ name: "LoginWithSideImage" } { name: "LoginWithSideImage" },
], ],
}, },
{ {
@ -89,6 +89,10 @@ export default [
{ name: "ParagraphWithImage" }, { name: "ParagraphWithImage" },
], ],
}, },
{
name: "Pricings",
components: [{ name: "Simple" }],
},
{ {
name: "Paginations", name: "Paginations",
components: [{ name: "Simple" }], components: [{ name: "Simple" }],