skolplattformen-backup/apps/website/components/PricingTemp.tsx

73 lines
2.1 KiB
TypeScript

import { formatPrice } from '../utils/intl'
import DownloadButtons from './DownloadButtons'
import Icon from './Icon'
import SectionTitle from './SectionTitle'
import { price } from './Pricing'
const baseFeatures = [
{
included: true,
title: 'BankID-inloggning',
},
{
included: true,
title: 'Se nyheter',
},
{
included: true,
title: 'Se notifieringar',
},
{
included: false,
title: 'Gratis support',
},
{
included: false,
title: 'Pushnotifieringar',
},
]
const Pricing = () => {
return (
<section className="px-5 py-8 md:px-0 md:py-32" id="vad-kostar-det">
<div className="max-w-2xl mx-auto">
<SectionTitle
title="Varför inte gratis?"
text={`
Vi som bygger appen vill gärna fortsätta vidareutveckla den och även ha möjlighet att ge ersättning
till de som hjälper till. Vi gjorde ett försök att ge ut appen gratis och hoppades att fler kunde stötta oss via
Patreon istället. Det visade sig inte vara hållbart men om vi får fler sponsorer så kommer vi göra appen gratis igen!
`}
/>
</div>
<div className="flex">
<div className="flex flex-col items-center inline-block px-5 py-8 mx-auto text-center shadow-lg rounded-md dark:bg-gray-800">
<h3 className="text-3xl text-gray-800 dark:text-gray-400">Just nu</h3>
<div className="mt-5 text-6xl text-pink-500">
{formatPrice(price)}
</div>
<ul className="my-5">
{baseFeatures.map(({ included, title }) => (
<li className="flex items-center space-x-1" key={title}>
{included ? (
<div className="w-5 text-green-500">
<Icon.Check />
</div>
) : (
<div className="w-5 text-red-500">
<Icon.Times />
</div>
)}
<span>{title}</span>
</li>
))}
</ul>
<DownloadButtons />
</div>
</div>
</section>
)
}
export default Pricing