change payments page

This commit is contained in:
Karol Wypchlo 2021-02-08 18:56:14 +01:00
parent b44325cce6
commit 0616d93be3
1 changed files with 307 additions and 358 deletions

View File

@ -26,374 +26,323 @@ export default function Payments() {
</div> </div>
</dl> </dl>
{/* This example requires Tailwind CSS v2.0+ */} {/* Payment details */}
<div className="bg-white"> <div className="space-y-6 sm:px-6 lg:px-0 lg:col-span-9">
<div className="max-w-7xl mx-auto py-24 px-4 sm:px-6 lg:px-8"> <section aria-labelledby="payment_details_heading">
<div className="sm:flex sm:flex-col sm:align-center"> <form action="#" method="POST">
<h1 className="text-5xl font-extrabold text-gray-900 sm:text-center">Pricing Plans</h1> <div className="shadow sm:rounded-md sm:overflow-hidden">
<p className="mt-5 text-xl text-gray-500 sm:text-center"> <div className="bg-white py-6 px-4 sm:p-6">
Start building for free, then add a site plan to go live. Account plans unlock additional features. <div>
</p> <h2 id="payment_details_heading" className="text-lg leading-6 font-medium text-gray-900">
</div> Payment details
<div className="mt-12 space-y-4 sm:mt-16 sm:space-y-0 sm:grid sm:grid-cols-2 sm:gap-6 lg:max-w-4xl lg:mx-auto xl:max-w-none xl:mx-0 xl:grid-cols-4"> </h2>
<div className="border border-gray-200 rounded-lg shadow-sm divide-y divide-gray-200"> <p className="mt-1 text-sm text-gray-500">
<div className="p-6"> Update your billing information. Please note that updating your location could affect your tax
<h2 className="text-lg leading-6 font-medium text-gray-900">Hobby</h2> rates.
<p className="mt-4 text-sm text-gray-500">All the basics for starting a new business</p> </p>
<p className="mt-8"> </div>
<span className="text-4xl font-extrabold text-gray-900">$12</span> <div className="mt-6 grid grid-cols-4 gap-6">
<span className="text-base font-medium text-gray-500">/mo</span> <div className="col-span-4 sm:col-span-2">
</p> <label htmlFor="first_name" className="block text-sm font-medium text-gray-700">
<a First name
href="#" </label>
className="mt-8 block w-full bg-gray-800 border border-gray-800 rounded-md py-2 text-sm font-semibold text-white text-center hover:bg-gray-900" <input
> type="text"
Buy Hobby name="first_name"
</a> id="first_name"
autoComplete="cc-given-name"
className="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-gray-900 focus:border-gray-900 sm:text-sm"
/>
</div>
<div className="col-span-4 sm:col-span-2">
<label htmlFor="last_name" className="block text-sm font-medium text-gray-700">
Last name
</label>
<input
type="text"
name="last_name"
id="last_name"
autoComplete="cc-family-name"
className="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-gray-900 focus:border-gray-900 sm:text-sm"
/>
</div>
<div className="col-span-4 sm:col-span-2">
<label htmlFor="email_address" className="block text-sm font-medium text-gray-700">
Email address
</label>
<input
type="text"
name="email_address"
id="email_address"
autoComplete="email"
className="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-gray-900 focus:border-gray-900 sm:text-sm"
/>
</div>
<div className="col-span-4 sm:col-span-1">
<label htmlFor="expiration_date" className="block text-sm font-medium text-gray-700">
Expration date
</label>
<input
type="text"
name="expiration_date"
id="expiration_date"
autoComplete="cc-exp"
className="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-gray-900 focus:border-gray-900 sm:text-sm"
placeholder="MM / YY"
/>
</div>
<div className="col-span-4 sm:col-span-1">
<label htmlFor="security_code" className="flex items-center text-sm font-medium text-gray-700">
<span>Security code</span>
{/* Heroicon name: solid/question-mark-circle */}
<svg
className="ml-1 flex-shrink-0 h-5 w-5 text-gray-300"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fillRule="evenodd"
d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-3a1 1 0 00-.867.5 1 1 0 11-1.731-1A3 3 0 0113 8a3.001 3.001 0 01-2 2.83V11a1 1 0 11-2 0v-1a1 1 0 011-1 1 1 0 100-2zm0 8a1 1 0 100-2 1 1 0 000 2z"
clipRule="evenodd"
/>
</svg>
</label>
<input
type="text"
name="security_code"
id="security_code"
autoComplete="cc-csc"
className="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-gray-900 focus:border-gray-900 sm:text-sm"
/>
</div>
<div className="col-span-4 sm:col-span-2">
<label htmlFor="country" className="block text-sm font-medium text-gray-700">
Country / Region
</label>
<select
id="country"
name="country"
autoComplete="country"
className="mt-1 block w-full bg-white border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-gray-900 focus:border-gray-900 sm:text-sm"
>
<option>United States</option>
<option>Canada</option>
<option>Mexico</option>
</select>
</div>
<div className="col-span-4 sm:col-span-2">
<label htmlFor="postal_code" className="block text-sm font-medium text-gray-700">
ZIP / Postal
</label>
<input
type="text"
name="postal_code"
id="postal_code"
autoComplete="postal-code"
className="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-gray-900 focus:border-gray-900 sm:text-sm"
/>
</div>
</div>
</div> </div>
<div className="pt-6 pb-8 px-6"> <div className="px-4 py-3 bg-gray-50 text-right sm:px-6">
<h3 className="text-xs font-medium text-gray-900 tracking-wide uppercase">What's included</h3> <button
<ul className="mt-6 space-y-4"> type="submit"
<li className="flex space-x-3"> className="bg-gray-800 border border-transparent rounded-md shadow-sm py-2 px-4 inline-flex justify-center text-sm font-medium text-white hover:bg-gray-900 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-900"
{/* Heroicon name: check */} >
<svg Save
className="flex-shrink-0 h-5 w-5 text-green-500" </button>
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fillRule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clipRule="evenodd"
/>
</svg>
<span className="text-sm text-gray-500">Potenti felis, in cras at at ligula nunc.</span>
</li>
<li className="flex space-x-3">
{/* Heroicon name: check */}
<svg
className="flex-shrink-0 h-5 w-5 text-green-500"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fillRule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clipRule="evenodd"
/>
</svg>
<span className="text-sm text-gray-500">Orci neque eget pellentesque.</span>
</li>
</ul>
</div> </div>
</div> </div>
<div className="border border-gray-200 rounded-lg shadow-sm divide-y divide-gray-200"> </form>
<div className="p-6"> </section>
<h2 className="text-lg leading-6 font-medium text-gray-900">Freelancer</h2> {/* Plan */}
<p className="mt-4 text-sm text-gray-500">All the basics for starting a new business</p> <section aria-labelledby="plan_heading">
<p className="mt-8"> <form action="#" method="POST">
<span className="text-4xl font-extrabold text-gray-900">$24</span> <div className="shadow sm:rounded-md sm:overflow-hidden">
<span className="text-base font-medium text-gray-500">/mo</span> <div className="bg-white py-6 px-4 space-y-6 sm:p-6">
</p> <div>
<a <h2 id="plan_heading" className="text-lg leading-6 font-medium text-gray-900">
href="#" Plan
className="mt-8 block w-full bg-gray-800 border border-gray-800 rounded-md py-2 text-sm font-semibold text-white text-center hover:bg-gray-900" </h2>
> </div>
Buy Freelancer <fieldset>
</a> <legend className="sr-only">Pricing plans</legend>
<ul className="relative bg-white rounded-md -space-y-px">
<li>
{/* On: "bg-orange-50 border-orange-200 z-10", Off: "border-gray-200" */}
<div className="relative border rounded-tl-md rounded-tr-md p-4 flex flex-col md:pl-4 md:pr-6 md:grid md:grid-cols-3">
<label className="flex items-center text-sm cursor-pointer">
<input
name="pricing_plan"
type="radio"
className="h-4 w-4 text-orange-500 cursor-pointer focus:ring-gray-900 border-gray-300"
aria-describedby="plan-option-pricing-0 plan-option-limit-0"
/>
<span className="ml-3 font-medium text-gray-900">Startup</span>
</label>
<p id="plan-option-pricing-0" className="ml-6 pl-1 text-sm md:ml-0 md:pl-0 md:text-center">
{/* On: "text-orange-900", Off: "text-gray-900" */}
<span className="font-medium">$29 / mo</span>
{/* On: "text-orange-700", Off: "text-gray-500" */}
<span>($290 / yr)</span>
</p>
{/* On: "text-orange-700", Off: "text-gray-500" */}
<p id="plan-option-limit-0" className="ml-6 pl-1 text-sm md:ml-0 md:pl-0 md:text-right">
Up to 5 active job postings
</p>
</div>
</li>
<li>
{/* On: "bg-orange-50 border-orange-200 z-10", Off: "border-gray-200" */}
<div className="relative border border-gray-200 p-4 flex flex-col md:pl-4 md:pr-6 md:grid md:grid-cols-3">
<label className="flex items-center text-sm cursor-pointer">
<input
name="pricing_plan"
type="radio"
className="h-4 w-4 text-orange-500 cursor-pointer focus:ring-gray-900 border-gray-300"
aria-describedby="plan-option-pricing-1 plan-option-limit-1"
defaultChecked
/>
<span className="ml-3 font-medium text-gray-900">Business</span>
</label>
<p id="plan-option-pricing-1" className="ml-6 pl-1 text-sm md:ml-0 md:pl-0 md:text-center">
{/* On: "text-orange-900", Off: "text-gray-900" */}
<span className="font-medium">$99 / mo</span>
{/* On: "text-orange-700", Off: "text-gray-500" */}
<span>($990 / yr)</span>
</p>
{/* On: "text-orange-700", Off: "text-gray-500" */}
<p id="plan-option-limit-1" className="ml-6 pl-1 text-sm md:ml-0 md:pl-0 md:text-right">
Up to 25 active job postings
</p>
</div>
</li>
<li>
{/* On: "bg-orange-50 border-orange-200 z-10", Off: "border-gray-200" */}
<div className="relative border border-gray-200 rounded-bl-md rounded-br-md p-4 flex flex-col md:pl-4 md:pr-6 md:grid md:grid-cols-3">
<label className="flex items-center text-sm cursor-pointer">
<input
name="pricing_plan"
type="radio"
className="h-4 w-4 text-orange-500 cursor-pointer focus:ring-gray-900 border-gray-300"
aria-describedby="plan-option-pricing-2 plan-option-limit-2"
/>
<span className="ml-3 font-medium text-gray-900">Enterprise</span>
</label>
<p id="plan-option-pricing-2" className="ml-6 pl-1 text-sm md:ml-0 md:pl-0 md:text-center">
{/* On: "text-orange-900", Off: "text-gray-900" */}
<span className="font-medium">$249 / mo</span>
{/* On: "text-orange-700", Off: "text-gray-500" */}
<span>($2490 / yr)</span>
</p>
{/* On: "text-orange-700", Off: "text-gray-500" */}
<p id="plan-option-limit-2" className="ml-6 pl-1 text-sm md:ml-0 md:pl-0 md:text-right">
Unlimited active job postings
</p>
</div>
</li>
</ul>
</fieldset>
<div className="flex items-center">
{/* Enabled: "bg-orange-500", Not Enabled: "bg-gray-200" */}
<button
type="button"
className="bg-gray-200 relative inline-flex flex-shrink-0 h-6 w-11 border-2 border-transparent rounded-full cursor-pointer focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-900 transition-colors ease-in-out duration-200"
aria-pressed="true"
aria-labelledby="annual-billing-label"
>
<span className="sr-only">Use setting</span>
{/* Enabled: "translate-x-5", Not Enabled: "translate-x-0" */}
<span
aria-hidden="true"
className="translate-x-0 inline-block h-5 w-5 rounded-full bg-white shadow transform ring-0 transition ease-in-out duration-200"
/>
</button>
<span className="ml-3" id="annual-billing-label">
<span className="text-sm font-medium text-gray-900">Annual billing </span>
<span className="text-sm text-gray-500">(Save 10%)</span>
</span>
</div>
</div> </div>
<div className="pt-6 pb-8 px-6"> <div className="px-4 py-3 bg-gray-50 text-right sm:px-6">
<h3 className="text-xs font-medium text-gray-900 tracking-wide uppercase">What's included</h3> <button
<ul className="mt-6 space-y-4"> type="submit"
<li className="flex space-x-3"> className="bg-gray-800 border border-transparent rounded-md shadow-sm py-2 px-4 inline-flex justify-center text-sm font-medium text-white hover:bg-gray-900 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-900"
{/* Heroicon name: check */} >
<svg Save
className="flex-shrink-0 h-5 w-5 text-green-500" </button>
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fillRule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clipRule="evenodd"
/>
</svg>
<span className="text-sm text-gray-500">Potenti felis, in cras at at ligula nunc. </span>
</li>
<li className="flex space-x-3">
{/* Heroicon name: check */}
<svg
className="flex-shrink-0 h-5 w-5 text-green-500"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fillRule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clipRule="evenodd"
/>
</svg>
<span className="text-sm text-gray-500">Orci neque eget pellentesque.</span>
</li>
<li className="flex space-x-3">
{/* Heroicon name: check */}
<svg
className="flex-shrink-0 h-5 w-5 text-green-500"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fillRule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clipRule="evenodd"
/>
</svg>
<span className="text-sm text-gray-500">Donec mauris sit in eu tincidunt etiam.</span>
</li>
</ul>
</div> </div>
</div> </div>
<div className="border border-gray-200 rounded-lg shadow-sm divide-y divide-gray-200"> </form>
<div className="p-6"> </section>
<h2 className="text-lg leading-6 font-medium text-gray-900">Startup</h2> {/* Billing history */}
<p className="mt-4 text-sm text-gray-500">All the basics for starting a new business</p> <section aria-labelledby="billing_history_heading">
<p className="mt-8"> <div className="bg-white pt-6 shadow sm:rounded-md sm:overflow-hidden">
<span className="text-4xl font-extrabold text-gray-900">$32</span> <div className="px-4 sm:px-6">
<span className="text-base font-medium text-gray-500">/mo</span> <h2 id="billing_history_heading" className="text-lg leading-6 font-medium text-gray-900">
</p> Billing history
<a </h2>
href="#"
className="mt-8 block w-full bg-gray-800 border border-gray-800 rounded-md py-2 text-sm font-semibold text-white text-center hover:bg-gray-900"
>
Buy Startup
</a>
</div>
<div className="pt-6 pb-8 px-6">
<h3 className="text-xs font-medium text-gray-900 tracking-wide uppercase">What's included</h3>
<ul className="mt-6 space-y-4">
<li className="flex space-x-3">
{/* Heroicon name: check */}
<svg
className="flex-shrink-0 h-5 w-5 text-green-500"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fillRule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clipRule="evenodd"
/>
</svg>
<span className="text-sm text-gray-500">Potenti felis, in cras at at ligula nunc. </span>
</li>
<li className="flex space-x-3">
{/* Heroicon name: check */}
<svg
className="flex-shrink-0 h-5 w-5 text-green-500"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fillRule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clipRule="evenodd"
/>
</svg>
<span className="text-sm text-gray-500">Orci neque eget pellentesque.</span>
</li>
<li className="flex space-x-3">
{/* Heroicon name: check */}
<svg
className="flex-shrink-0 h-5 w-5 text-green-500"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fillRule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clipRule="evenodd"
/>
</svg>
<span className="text-sm text-gray-500">Donec mauris sit in eu tincidunt etiam.</span>
</li>
<li className="flex space-x-3">
{/* Heroicon name: check */}
<svg
className="flex-shrink-0 h-5 w-5 text-green-500"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fillRule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clipRule="evenodd"
/>
</svg>
<span className="text-sm text-gray-500">Faucibus volutpat magna.</span>
</li>
</ul>
</div>
</div> </div>
<div className="border border-gray-200 rounded-lg shadow-sm divide-y divide-gray-200"> <div className="mt-6 flex flex-col">
<div className="p-6"> <div className="-my-2 overflow-x-auto sm:-mx-6 lg:-mx-8">
<h2 className="text-lg leading-6 font-medium text-gray-900">Enterprise</h2> <div className="py-2 align-middle inline-block min-w-full sm:px-6 lg:px-8">
<p className="mt-4 text-sm text-gray-500">All the basics for starting a new business</p> <div className="overflow-hidden border-t border-gray-200">
<p className="mt-8"> <table className="min-w-full divide-y divide-gray-200">
<span className="text-4xl font-extrabold text-gray-900">$48</span> <thead className="bg-gray-50">
<span className="text-base font-medium text-gray-500">/mo</span> <tr>
</p> <th
<a scope="col"
href="#" className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"
className="mt-8 block w-full bg-gray-800 border border-gray-800 rounded-md py-2 text-sm font-semibold text-white text-center hover:bg-gray-900" >
> Date
Buy Enterprise </th>
</a> <th
</div> scope="col"
<div className="pt-6 pb-8 px-6"> className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"
<h3 className="text-xs font-medium text-gray-900 tracking-wide uppercase">What's included</h3> >
<ul className="mt-6 space-y-4"> Description
<li className="flex space-x-3"> </th>
{/* Heroicon name: check */} <th
<svg scope="col"
className="flex-shrink-0 h-5 w-5 text-green-500" className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"
xmlns="http://www.w3.org/2000/svg" >
viewBox="0 0 20 20" Amount
fill="currentColor" </th>
aria-hidden="true" {/*
> `relative` is added here due to a weird bug in Safari that causes `sr-only` headings to introduce overflow on the body on mobile.
<path */}
fillRule="evenodd" <th
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" scope="col"
clipRule="evenodd" className="relative px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"
/> >
</svg> <span className="sr-only">View receipt</span>
<span className="text-sm text-gray-500">Potenti felis, in cras at at ligula nunc. </span> </th>
</li> </tr>
<li className="flex space-x-3"> </thead>
{/* Heroicon name: check */} <tbody className="bg-white divide-y divide-gray-200">
<svg <tr>
className="flex-shrink-0 h-5 w-5 text-green-500" <td className="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">1/1/2020</td>
xmlns="http://www.w3.org/2000/svg" <td className="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
viewBox="0 0 20 20" Business Plan - Annual Billing
fill="currentColor" </td>
aria-hidden="true" <td className="px-6 py-4 whitespace-nowrap text-sm text-gray-500">CA$109.00</td>
> <td className="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
<path <a href="#" className="text-orange-600 hover:text-orange-900">
fillRule="evenodd" View receipt
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" </a>
clipRule="evenodd" </td>
/> </tr>
</svg> {/* More items... */}
<span className="text-sm text-gray-500">Orci neque eget pellentesque.</span> </tbody>
</li> </table>
<li className="flex space-x-3"> </div>
{/* Heroicon name: check */} </div>
<svg
className="flex-shrink-0 h-5 w-5 text-green-500"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fillRule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clipRule="evenodd"
/>
</svg>
<span className="text-sm text-gray-500">Donec mauris sit in eu tincidunt etiam.</span>
</li>
<li className="flex space-x-3">
{/* Heroicon name: check */}
<svg
className="flex-shrink-0 h-5 w-5 text-green-500"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fillRule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clipRule="evenodd"
/>
</svg>
<span className="text-sm text-gray-500">Faucibus volutpat magna.</span>
</li>
<li className="flex space-x-3">
{/* Heroicon name: check */}
<svg
className="flex-shrink-0 h-5 w-5 text-green-500"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fillRule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clipRule="evenodd"
/>
</svg>
<span className="text-sm text-gray-500">Id sed tellus in varius quisque.</span>
</li>
<li className="flex space-x-3">
{/* Heroicon name: check */}
<svg
className="flex-shrink-0 h-5 w-5 text-green-500"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fillRule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clipRule="evenodd"
/>
</svg>
<span className="text-sm text-gray-500">Risus egestas faucibus.</span>
</li>
<li className="flex space-x-3">
{/* Heroicon name: check */}
<svg
className="flex-shrink-0 h-5 w-5 text-green-500"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fillRule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clipRule="evenodd"
/>
</svg>
<span className="text-sm text-gray-500">Risus cursus ullamcorper.</span>
</li>
</ul>
</div> </div>
</div> </div>
</div> </div>
</div> </section>
</div> </div>
</div> </div>
</Layout> </Layout>