From 30ffcb51c23ec1dd4a1c19b5f814df0c5718999f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Wed, 3 Apr 2024 09:34:44 +0200 Subject: [PATCH] update pricing --- apps/public/src/app/pricing.tsx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/apps/public/src/app/pricing.tsx b/apps/public/src/app/pricing.tsx index 398a20c4..88084e95 100644 --- a/apps/public/src/app/pricing.tsx +++ b/apps/public/src/app/pricing.tsx @@ -3,14 +3,15 @@ import { CheckIcon, StarIcon } from 'lucide-react'; import { Heading2, Lead2 } from './copy'; const pricing = [ - { price: 'Free', events: 3000, hint: 'Try it' }, + { price: 'Free', events: 5000, hint: 'Try it' }, { price: '$5', events: 10_000 }, - { price: '$10', events: 20_000 }, - { price: '$20', events: 100_000, hint: 'Great value' }, - { price: '$30', events: 200_000 }, - { price: '$50', events: 400_000 }, - { price: '$70', events: 600_000 }, - { price: '$90', events: 1_000_000 }, + { price: '$10', events: 100_000 }, + { price: '$20', events: 200_000, hint: 'Great value' }, + { price: '$40', events: 500_000 }, + { price: '$60', events: 1_000_000 }, + { price: '$80', events: 2_000_000 }, + { price: '$120', events: 5_000_000 }, + { price: '$150', events: 10_000_000 }, ]; export function Pricing() {