From 8d3e4439e4e89286f8be903d66dd59f8730a4499 Mon Sep 17 00:00:00 2001 From: Emily Date: Sun, 2 Jun 2024 17:32:57 +0200 Subject: [PATCH] change pricing page --- landing/components/pricing/PricingCard.vue | 88 +++++++----- landing/pages/pricing.vue | 157 ++++++++++----------- 2 files changed, 122 insertions(+), 123 deletions(-) diff --git a/landing/components/pricing/PricingCard.vue b/landing/components/pricing/PricingCard.vue index 99fec1b..63a81a0 100644 --- a/landing/components/pricing/PricingCard.vue +++ b/landing/components/pricing/PricingCard.vue @@ -1,58 +1,68 @@ - - \ No newline at end of file + + \ No newline at end of file diff --git a/landing/pages/pricing.vue b/landing/pages/pricing.vue index a44133b..1fb9167 100644 --- a/landing/pages/pricing.vue +++ b/landing/pages/pricing.vue @@ -2,110 +2,99 @@ import { Vue3Lottie } from 'vue3-lottie'; +const starterTierCardData = ref({ + title: 'STARTER', + cost: '0', + features: [ + "3K visits/events per month", + "10 AI Interaction per month", + "1 month data retention", + "Limited reports", + "1 Team member", + "Limited Automatic Email Report", + "Shared Server & DB", + "Low priority email support", + ], + desc: `Free project are not reliable and sometimes + can experience some data loss.To have a + dedicated server we suggest to upgrade the + plan to an higher one!`, + active: true +}); + +const accelerationTierCardData = ref({ + title: 'ACCELERATION', + cost: '9.99', + features: [ + "150K visits/events per month", + "100 AI Interaction per month", + "6 months data retention", + "Limited reports", + "1 Team member", + "Limited Automatic Email Report", + "Shared Server & DB", + "Low priority email support" + ], + desc: `Your project is entering a growth phase. We simplify data analysis for you. For more support, try our Expansion plan—it's worth it!`, + active: false +}); + +const expansionTierCardData = ref({ + title: 'EXPANSION', + cost: '39.99', + features: [ + "500K visits/events per month", + "5000 AI Interaction per month", + "2 years data retention", + "Unlimited reports", + "10 Team member", + "Unlimited Automatic Email Report", + "Dedicated Server & DB", + "high priority email support" + ], + desc: `We will support you with everything we can offer and give you the full power of our service. If you need more space and are growing, contact us for a custom offer!`, + active: false +}); + definePageMeta({ layout: 'header' });