Skip to content

Commit

Permalink
add pricing
Browse files Browse the repository at this point in the history
  • Loading branch information
willpinha committed Jan 10, 2024
1 parent 1ee50c6 commit f4d9f1c
Showing 1 changed file with 119 additions and 0 deletions.
119 changes: 119 additions & 0 deletions src/examples/pricing/cards.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
<div class="flex flex-col gap-8 items-center">
<!-- Title -->
<div class="flex flex-col gap-2 text-center">
<h1 class="font-bold text-3xl">Pricing</h1>
<span>Whatever your status, our offers evolve according to your needs</span>
</div>

<!-- Montly/annual-->
<div class="flex gap-2">
<span>Montly</span>

<input type="checkbox" class="toggle toggle-secondary" />

<span class="flex flex-col">
Annual
<span class="text-sm text-accent">(Save up to 10%)</span>
</span>
</div>

<!-- Pricing cards -->
<div class="grid grid-cols-3 items-start px-8 gap-8">
<!-- Price -->
<div class="flex flex-col gap-6 bg-base-200 rounded-box p-8">
<div class="flex flex-col gap-4 text-center">
<h2 class="text-xl">Free</h2>

<h1 class="text-5xl font-bold">Free</h1>

<span class="text-sm">Free forever</span>
</div>

<!-- Features -->
<div class="flex flex-col">
<div class="flex gap-2 items-center">
<i class="fa-solid fa-check text-accent"></i>
1 user
</div>

<div class="flex gap-2 items-center">
<i class="fa-solid fa-check text-accent"></i>
Plan features
</div>

<div class="flex gap-2 items-center">
<i class="fa-solid fa-check text-accent"></i>
Product support
</div>
</div>

<a class="btn btn-neutral">Sign up</a>
</div>

<!-- Price (Most popular) -->
<div class="flex flex-col gap-6 bg-base-200 rounded-box p-8 border border-primary shadow">
<div class="badge badge-primary self-center badge-lg">
Most popular
</div>

<div class="flex flex-col gap-4 text-center">
<h2 class="text-xl">Startup</h2>

<h1 class="text-5xl font-bold">$39</h1>

<span class="text-sm">All the basics for starting a new business</span>
</div>

<!-- Features -->
<div class="flex flex-col">
<div class="flex gap-2 items-center">
<i class="fa-solid fa-check text-accent"></i>
2 users
</div>

<div class="flex gap-2 items-center">
<i class="fa-solid fa-check text-accent"></i>
Plan features
</div>

<div class="flex gap-2 items-center">
<i class="fa-solid fa-check text-accent"></i>
Product support
</div>
</div>

<a class="btn btn-primary">Sign up</a>
</div>

<!-- Price -->
<div class="flex flex-col gap-6 bg-base-200 rounded-box p-8">
<div class="flex flex-col gap-4 text-center">
<h2 class="text-xl">Team</h2>

<h1 class="text-5xl font-bold">$89</h1>

<span class="text-sm">Everything you need for a growing business</span>
</div>

<!-- Features -->
<div class="flex flex-col">
<div class="flex gap-2 items-center">
<i class="fa-solid fa-check text-accent"></i>
10 users
</div>

<div class="flex gap-2 items-center">
<i class="fa-solid fa-check text-accent"></i>
Plan features
</div>

<div class="flex gap-2 items-center">
<i class="fa-solid fa-check text-accent"></i>
Product support
</div>
</div>

<a class="btn btn-neutral">Sign up</a>
</div>
</div>
</div>

0 comments on commit f4d9f1c

Please sign in to comment.