Spaces:
Running
Running
File size: 19,872 Bytes
21a686e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 |
import { CheckIcon, XMarkIcon } from '@heroicons/react/20/solid'
const tiers = [
{
id: 'starter',
name: 'Starter',
description: 'Everything you need to get started.',
price: { monthly: '$19', annually: '$199' },
highlights: ['Custom domains', 'Edge content delivery', 'Advanced analytics'],
featured: false,
},
{
id: 'scale',
name: 'Scale',
description: 'Added flexibility at scale.',
price: { monthly: '$99', annually: '$999' },
highlights: [
'Custom domains',
'Edge content delivery',
'Advanced analytics',
'Quarterly workshops',
'Single sign-on (SSO)',
'Priority phone support',
],
featured: true,
},
{
id: 'growth',
name: 'Growth',
description: 'All the extras for your growing team.',
price: { monthly: '$49', annually: '$499' },
highlights: ['Custom domains', 'Edge content delivery', 'Advanced analytics', 'Quarterly workshops'],
featured: false,
},
]
const sections = [
{
name: 'Features',
features: [
{ name: 'Edge content delivery', tiers: { Starter: true, Growth: true, Scale: true } },
{ name: 'Custom domains', tiers: { Starter: '1', Growth: '3', Scale: 'Unlimited' } },
{ name: 'Team members', tiers: { Starter: '3', Growth: '20', Scale: 'Unlimited' } },
{ name: 'Single sign-on (SSO)', tiers: { Starter: false, Growth: false, Scale: true } },
],
},
{
name: 'Reporting',
features: [
{ name: 'Advanced analytics', tiers: { Starter: true, Growth: true, Scale: true } },
{ name: 'Basic reports', tiers: { Starter: false, Growth: true, Scale: true } },
{ name: 'Professional reports', tiers: { Starter: false, Growth: false, Scale: true } },
{ name: 'Custom report builder', tiers: { Starter: false, Growth: false, Scale: true } },
],
},
{
name: 'Support',
features: [
{ name: '24/7 online support', tiers: { Starter: true, Growth: true, Scale: true } },
{ name: 'Quarterly workshops', tiers: { Starter: false, Growth: true, Scale: true } },
{ name: 'Priority phone support', tiers: { Starter: false, Growth: false, Scale: true } },
{ name: '1:1 onboarding tour', tiers: { Starter: false, Growth: false, Scale: true } },
],
},
]
function classNames(...classes: (string | undefined | null | false)[]): string {
return classes.filter(Boolean).join(' ')
}
export default function ThreeTiersWithFeatureComparison() {
return (
<form className="group/tiers isolate overflow-hidden">
<div className="flow-root bg-gray-900 pt-24 pb-16 sm:pt-32 lg:pb-0">
<div className="mx-auto max-w-7xl px-6 lg:px-8">
<div className="relative z-10">
<h2 className="mx-auto max-w-4xl text-center text-5xl font-semibold tracking-tight text-balance text-white sm:text-6xl">
Pricing that grows with you
</h2>
<p className="mx-auto mt-6 max-w-2xl text-center text-lg font-medium text-pretty text-gray-400 sm:text-xl/8">
Choose an affordable plan that’s packed with the best features for engaging your audience, creating
customer loyalty, and driving sales.
</p>
<div className="mt-16 flex justify-center">
<fieldset aria-label="Payment frequency">
<div className="grid grid-cols-2 gap-x-1 rounded-full bg-white/5 p-1 text-center text-xs/5 font-semibold text-white">
<label className="group relative rounded-full px-2.5 py-1 has-checked:bg-indigo-500">
<input
defaultValue="monthly"
defaultChecked
name="frequency"
type="radio"
className="absolute inset-0 appearance-none rounded-full"
/>
<span className="text-white">Monthly</span>
</label>
<label className="group relative rounded-full px-2.5 py-1 has-checked:bg-indigo-500">
<input
defaultValue="annually"
name="frequency"
type="radio"
className="absolute inset-0 appearance-none rounded-full"
/>
<span className="text-white">Annually</span>
</label>
</div>
</fieldset>
</div>
</div>
<div className="relative mx-auto mt-10 grid max-w-md grid-cols-1 gap-y-8 lg:mx-0 lg:-mb-14 lg:max-w-none lg:grid-cols-3">
<svg
viewBox="0 0 1208 1024"
aria-hidden="true"
className="absolute -bottom-48 left-1/2 h-256 -translate-x-1/2 translate-y-1/2 mask-[radial-gradient(closest-side,white,transparent)] lg:-top-48 lg:bottom-auto lg:translate-y-0"
>
<ellipse cx={604} cy={512} rx={604} ry={512} fill="url(#d25c25d4-6d43-4bf9-b9ac-1842a30a4867)" />
<defs>
<radialGradient id="d25c25d4-6d43-4bf9-b9ac-1842a30a4867">
<stop stopColor="#7775D6" />
<stop offset={1} stopColor="#E935C1" />
</radialGradient>
</defs>
</svg>
<div
aria-hidden="true"
className="hidden lg:absolute lg:inset-x-px lg:top-4 lg:bottom-0 lg:block lg:rounded-t-2xl lg:bg-gray-800/80 lg:ring-1 lg:ring-white/10"
/>
{tiers.map((tier) => (
<div
key={tier.id}
data-featured={tier.featured ? 'true' : undefined}
className={classNames(
tier.featured
? 'z-10 bg-white shadow-xl ring-1 ring-gray-900/10'
: 'bg-gray-800/80 ring-1 ring-white/10 lg:bg-transparent lg:pb-14 lg:ring-0',
'group/tier relative rounded-2xl',
)}
>
<div className="p-8 lg:pt-12 xl:p-10 xl:pt-14">
<h3
id={`tier-${tier.id}`}
className="text-sm/6 font-semibold text-white group-data-featured/tier:text-gray-900"
>
{tier.name}
</h3>
<div className="flex flex-col gap-6 sm:flex-row sm:items-end sm:justify-between lg:flex-col lg:items-stretch">
<div className="mt-2 flex items-center gap-x-4">
<p className="text-4xl font-semibold tracking-tight text-white group-not-has-[[name=frequency][value=monthly]:checked]/tiers:hidden group-data-featured/tier:text-gray-900">
{tier.price.monthly}
</p>
<p className="text-4xl font-semibold tracking-tight text-white group-not-has-[[name=frequency][value=annually]:checked]/tiers:hidden group-data-featured/tier:text-gray-900">
{tier.price.annually}
</p>
<div className="text-sm">
<p className="text-white group-data-featured/tier:text-gray-900">USD</p>
<p className="text-gray-400 group-not-has-[[name=frequency][value=monthly]:checked]/tiers:hidden group-data-featured/tier:text-gray-500">
Billed monthly
</p>
<p className="text-gray-400 group-not-has-[[name=frequency][value=annually]:checked]/tiers:hidden group-data-featured/tier:text-gray-500">
Billed annually
</p>
</div>
</div>
<button
value={tier.id}
name="tier"
type="submit"
aria-describedby={`tier-${tier.id}`}
className="w-full rounded-md bg-white/10 px-3 py-2 text-center text-sm/6 font-semibold text-white group-data-featured/tier:bg-indigo-600 group-data-featured/tier:shadow-xs hover:bg-white/20 group-data-featured/tier:hover:bg-indigo-500 focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-white group-data-featured/tier:focus-visible:outline-indigo-600"
>
Buy this plan
</button>
</div>
<div className="mt-8 flow-root sm:mt-10">
<ul
role="list"
className="-my-2 divide-y divide-white/5 border-t border-white/5 text-sm/6 text-white group-data-featured/tier:divide-gray-900/5 group-data-featured/tier:border-gray-900/5 group-data-featured/tier:text-gray-600 lg:border-t-0"
>
{tier.highlights.map((mainFeature) => (
<li key={mainFeature} className="flex gap-x-3 py-2">
<CheckIcon
aria-hidden="true"
className="h-6 w-5 flex-none text-gray-500 group-data-featured/tier:text-indigo-600"
/>
{mainFeature}
</li>
))}
</ul>
</div>
</div>
</div>
))}
</div>
</div>
</div>
<div className="relative bg-gray-50 lg:pt-14">
<div className="mx-auto max-w-7xl px-6 py-24 sm:py-32 lg:px-8">
{/* Feature comparison (up to lg) */}
<section aria-labelledby="mobile-comparison-heading" className="lg:hidden">
<h2 id="mobile-comparison-heading" className="sr-only">
Feature comparison
</h2>
<div className="mx-auto max-w-2xl space-y-16">
{tiers.map((tier) => (
<div key={tier.id} className="border-t border-gray-900/10">
<div
className={classNames(
tier.featured ? 'border-indigo-600' : 'border-transparent',
'-mt-px w-72 border-t-2 pt-10 md:w-80',
)}
>
<h3
className={classNames(
tier.featured ? 'text-indigo-600' : 'text-gray-900',
'text-sm/6 font-semibold',
)}
>
{tier.name}
</h3>
<p className="mt-1 text-sm/6 text-gray-600">{tier.description}</p>
</div>
<div className="mt-10 space-y-10">
{sections.map((section) => (
<div key={section.name}>
<h4 className="text-sm/6 font-semibold text-gray-900">{section.name}</h4>
<div className="relative mt-6">
{/* Fake card background */}
<div
aria-hidden="true"
className="absolute inset-y-0 right-0 hidden w-1/2 rounded-lg bg-white shadow-xs sm:block"
/>
<div
className={classNames(
tier.featured ? 'ring-2 ring-indigo-600' : 'ring-1 ring-gray-900/10',
'relative rounded-lg bg-white shadow-xs sm:rounded-none sm:bg-transparent sm:shadow-none sm:ring-0',
)}
>
<dl className="divide-y divide-gray-200 text-sm/6">
{section.features.map((feature) => (
<div
key={feature.name}
className="flex items-center justify-between px-4 py-3 sm:grid sm:grid-cols-2 sm:px-0"
>
<dt className="pr-4 text-gray-600">{feature.name}</dt>
<dd className="flex items-center justify-end sm:justify-center sm:px-4">
{typeof feature.tiers[tier.name] === 'string' ? (
<span
className={tier.featured ? 'font-semibold text-indigo-600' : 'text-gray-900'}
>
{feature.tiers[tier.name]}
</span>
) : (
<>
{feature.tiers[tier.name] === true ? (
<CheckIcon aria-hidden="true" className="mx-auto size-5 text-indigo-600" />
) : (
<XMarkIcon aria-hidden="true" className="mx-auto size-5 text-gray-400" />
)}
<span className="sr-only">
{feature.tiers[tier.name] === true ? 'Yes' : 'No'}
</span>
</>
)}
</dd>
</div>
))}
</dl>
</div>
{/* Fake card border */}
<div
aria-hidden="true"
className={classNames(
tier.featured ? 'ring-2 ring-indigo-600' : 'ring-1 ring-gray-900/10',
'pointer-events-none absolute inset-y-0 right-0 hidden w-1/2 rounded-lg sm:block',
)}
/>
</div>
</div>
))}
</div>
</div>
))}
</div>
</section>
{/* Feature comparison (lg+) */}
<section aria-labelledby="comparison-heading" className="hidden lg:block">
<h2 id="comparison-heading" className="sr-only">
Feature comparison
</h2>
<div className="grid grid-cols-4 gap-x-8 border-t border-gray-900/10 before:block">
{tiers.map((tier) => (
<div key={tier.id} aria-hidden="true" className="-mt-px">
<div
className={classNames(
tier.featured ? 'border-indigo-600' : 'border-transparent',
'border-t-2 pt-10',
)}
>
<p
className={classNames(
tier.featured ? 'text-indigo-600' : 'text-gray-900',
'text-sm/6 font-semibold',
)}
>
{tier.name}
</p>
<p className="mt-1 text-sm/6 text-gray-600">{tier.description}</p>
</div>
</div>
))}
</div>
<div className="-mt-6 space-y-16">
{sections.map((section) => (
<div key={section.name}>
<h3 className="text-sm/6 font-semibold text-gray-900">{section.name}</h3>
<div className="relative -mx-8 mt-10">
{/* Fake card backgrounds */}
<div
aria-hidden="true"
className="absolute inset-x-8 inset-y-0 grid grid-cols-4 gap-x-8 before:block"
>
<div className="size-full rounded-lg bg-white shadow-xs" />
<div className="size-full rounded-lg bg-white shadow-xs" />
<div className="size-full rounded-lg bg-white shadow-xs" />
</div>
<table className="relative w-full border-separate border-spacing-x-8">
<thead>
<tr className="text-left">
<th scope="col">
<span className="sr-only">Feature</span>
</th>
{tiers.map((tier) => (
<th key={tier.id} scope="col">
<span className="sr-only">{tier.name} tier</span>
</th>
))}
</tr>
</thead>
<tbody>
{section.features.map((feature, featureIdx) => (
<tr key={feature.name}>
<th scope="row" className="w-1/4 py-3 pr-4 text-left text-sm/6 font-normal text-gray-900">
{feature.name}
{featureIdx !== section.features.length - 1 ? (
<div className="absolute inset-x-8 mt-3 h-px bg-gray-200" />
) : null}
</th>
{tiers.map((tier) => (
<td key={tier.id} className="relative w-1/4 px-4 py-0 text-center">
<span className="relative size-full py-3">
{typeof feature.tiers[tier.name] === 'string' ? (
<span
className={classNames(
tier.featured ? 'font-semibold text-indigo-600' : 'text-gray-900',
'text-sm/6',
)}
>
{feature.tiers[tier.name]}
</span>
) : (
<>
{feature.tiers[tier.name] === true ? (
<CheckIcon aria-hidden="true" className="mx-auto size-5 text-indigo-600" />
) : (
<XMarkIcon aria-hidden="true" className="mx-auto size-5 text-gray-400" />
)}
<span className="sr-only">
{feature.tiers[tier.name] === true ? 'Yes' : 'No'}
</span>
</>
)}
</span>
</td>
))}
</tr>
))}
</tbody>
</table>
{/* Fake card borders */}
<div
aria-hidden="true"
className="pointer-events-none absolute inset-x-8 inset-y-0 grid grid-cols-4 gap-x-8 before:block"
>
{tiers.map((tier) => (
<div
key={tier.id}
className={classNames(
tier.featured ? 'ring-2 ring-indigo-600' : 'ring-1 ring-gray-900/10',
'rounded-lg',
)}
/>
))}
</div>
</div>
</div>
))}
</div>
</section>
</div>
</div>
</form>
)
}
|