File size: 11,409 Bytes
f5071ca |
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 |
import React, { Fragment } from "react";
import { pricingSections } from "../../data/pricingSections";
import { pricingTiers } from "../../data/pricingTiers";
import { Link } from "react-router-dom";
export default function PricingComparisonTable({ loggedIn }) {
return (
<section className="max-w-2xl mx-auto bg-white py-16 sm:py-24 sm:px-6 lg:max-w-7xl lg:px-8">
<section className="space-y-24 lg:hidden">
{pricingTiers.map((tier) => (
<section key={tier.name}>
<section className="px-4 mb-8">
<h2 className="text-lg leading-6 font-medium text-gray-900">
{tier.name}
</h2>
<p className="mt-4">
<span className="text-4xl font-extrabold text-gray-900">
${tier.priceMonthly}
</span>
<span className="text-base font-medium text-gray-500">/mo</span>
</p>
<p className="mt-4 text-sm text-gray-500">{tier.description}</p>
<Link
to={loggedIn ? "/profile" : "/sign-up"}
onClick={() => window.scrollTo(0, 0)}
className="block w-full bg-indigo-600 border border-transparent rounded-md shadow py-2 text-sm font-semibold text-white text-center hover:to-pink-600">
Buy {tier.name}
</Link>
</section>
{pricingSections.map((section) => (
<table key={section.name} className="w-full">
<caption className="bg-gray-50 border-t border-gray-200 py-3 px-4 text-sm font-medium text-gray-900 text-left">
{section.name}
</caption>
<thead>
<tr>
<th className="sr-only" scope="col">
Feature
</th>
<th className="sr-only" scope="col">
Included
</th>
</tr>
</thead>
<tbody className="divide-y divide-gray-200">
{section.features.map((feature) => (
<tr key={feature.name} className="border-t border-gray-200">
<th
className="py-5 px-4 text-sm font-normal text-gray-500 text-left"
scope="row">
{feature.name}
</th>
<td className="py-5 pr-4">
{typeof feature.tiers[tier.name] === "string" ? (
<span className="block text-sm text-gray-700 text-right">
{feature.tiers[tier.name]}
</span>
) : (
<React.Fragment>
{feature.tiers[tier.name] === true ? (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="currentColor"
className="ml-auto h-5 w-5 text-green-500"
aria-hidden="true">
<path
fillRule="evenodd"
d="M19.916 4.626a.75.75 0 0 1 .208 1.04l-9 13.5a.75.75 0 0 1-1.154.114l-6-6a.75.75 0 0 1 1.06-1.06l5.353 5.353 8.493-12.74a.75.75 0 0 1 1.04-.207Z"
clipRule="evenodd"
/>
</svg>
) : (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="currentColor"
className="ml-auto h-5 w-5 text-gray-400"
aria-hidden="true">
<path
fillRule="evenodd"
d="M4.25 12a.75.75 0 0 1 .75-.75h14a.75.75 0 0 1 0 1.5H5a.75.75 0 0 1-.75-.75Z"
clipRule="evenodd"
/>
</svg>
)}
<span className="sr-only">
{feature.tiers[tier.name] === true ? "Yes" : "No"}
</span>
</React.Fragment>
)}
</td>
</tr>
))}
</tbody>
</table>
))}
<section className="border-t border-gray-200 px-4 pt-5">
<Link
to={loggedIn ? "/profile" : "/sign-up"}
onClick={() => window.scrollTo(0, 0)}
className="block w-full bg-indigo-600 border border-transparent rounded-md shadow py-2 text-sm font-semibold text-white text-center hover:to-pink-600">
Buy {tier.name}
</Link>
</section>
</section>
))}
</section>
<section className="hidden lg:block">
<table className="w-full h-px table-fixed">
<caption className="sr-only">Pricing plan comparison</caption>
<thead>
<tr>
<th
className="pb-4 pl-6 pr-6 text-sm font-medium text-gray-900 text-left"
scope="col">
<span className="sr-only">Feature by</span>
<span>Plans</span>
</th>
{pricingTiers.map((tier) => (
<th
key={tier.name}
className="w-1/4 pb-4 px-6 text-lg leading-6 font-medium text-gray-900 text-left"
scope="col">
{tier.name}
</th>
))}
</tr>
</thead>
<tbody className="border-t border-gray-200 divide-y divide-gray-200">
<tr>
<th
className="py-8 pl-6 pr-6 align-top text-sm font-medium text-gray-900 text-left"
scope="row">
Pricing
</th>
{pricingTiers.map((tier) => (
<td key={tier.name} className="h-full py-8 px-6 align-top">
<section className="h-full flex flex-col justify-between">
<section>
<p>
<span className="text-4xl font-extrabold text-gray-900">
${tier.priceMonthly}
</span>
<span className="text-base font-medium text-gray-500">
/mo
</span>
</p>
<p className="mt-4 text-sm text-gray-500">
{tier.description}
</p>
</section>
<Link
to={loggedIn ? "/profile" : "/sign-up"}
onClick={() => window.scrollTo(0, 0)}
className="block w-full bg-indigo-600 border border-transparent rounded-md shadow py-2 text-sm font-semibold text-white text-center hover:to-pink-600">
Buy {tier.name}
</Link>
</section>
</td>
))}
</tr>
{pricingSections.map((section) => (
<Fragment key={section.name}>
<tr>
<th
className="py-3 pl-6 bg-gray-50 text-sm font-medium text-gray-900 text-left"
colSpan={4}
scope="colgroup">
{section.name}
</th>
</tr>
{section.features.map((feature) => (
<tr key={feature.name}>
<th
className="py-5 pl-6 pr-6 text-sm font-normal text-gray-500 text-left"
scope="row">
{feature.name}
</th>
{pricingTiers.map((tier) => (
<td key={tier.name} className="py-5 px-6">
{typeof feature.tiers[tier.name] === "string" ? (
<span className="block text-sm text-gray-700">
{feature.tiers[tier.name]}
</span>
) : (
<>
{feature.tiers[tier.name] === true ? (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="currentColor"
className="h-5 w-5 text-green-500"
aria-hidden="true">
<path
fillRule="evenodd"
d="M19.916 4.626a.75.75 0 0 1 .208 1.04l-9 13.5a.75.75 0 0 1-1.154.114l-6-6a.75.75 0 0 1 1.06-1.06l5.353 5.353 8.493-12.74a.75.75 0 0 1 1.04-.207Z"
clipRule="evenodd"
/>
</svg>
) : (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="currentColor"
className="h-5 w-5 text-gray-400"
aria-hidden="true">
<path
fillRule="evenodd"
d="M4.25 12a.75.75 0 0 1 .75-.75h14a.75.75 0 0 1 0 1.5H5a.75.75 0 0 1-.75-.75Z"
clipRule="evenodd"
/>
</svg>
)}
<span className="sr-only">
{feature.tiers[tier.name] === true
? "Included"
: "Not included"}{" "}
in {tier.name}
</span>
</>
)}
</td>
))}
</tr>
))}
</Fragment>
))}
</tbody>
<tfoot>
<tr className="border-t border-gray-200">
<th className="sr-only" scope="row">
Choose your plan
</th>
{pricingTiers.map((tier) => (
<td key={tier.name} className="pt-5 px-6">
<Link
to={loggedIn ? "/profile" : "/sign-up"}
onClick={() => window.scrollTo(0, 0)}
className="block w-full bg-indigo-600 border border-transparent rounded-md shadow py-2 text-sm font-semibold text-white text-center hover:to-pink-600">
Buy {tier.name}
</Link>
</td>
))}
</tr>
</tfoot>
</table>
</section>
</section>
);
}
|