add payment_ok page

This commit is contained in:
Emily
2024-06-20 14:29:24 +02:00
parent c89a73f4d9
commit 0981d4d4fd
2 changed files with 36 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ const starterTierCardData = ref<PricingCardProp>({
const accelerationTierCardData = ref<PricingCardProp>({ const accelerationTierCardData = ref<PricingCardProp>({
title: 'ACCELERATION', title: 'ACCELERATION',
cost: '9.99', cost: '9,99',
features: [ features: [
"150K visits/events per month", "150K visits/events per month",
"100 AI Interaction per month", "100 AI Interaction per month",
@@ -50,7 +50,7 @@ const accelerationTierCardData = ref<PricingCardProp>({
const expansionTierCardData = ref<PricingCardProp>({ const expansionTierCardData = ref<PricingCardProp>({
title: 'EXPANSION', title: 'EXPANSION',
cost: '39.99', cost: '39,99',
features: [ features: [
"500K visits/events per month", "500K visits/events per month",
"5000 AI Interaction per month", "5000 AI Interaction per month",

View File

@@ -0,0 +1,34 @@
<script setup lang="ts">
definePageMeta({ layout: 'none' });
const activeProject = useActiveProject();
</script>
<template>
<div class="w-full h-full">
<div class="flex items-center h-full flex-col gap-4">
<div class="text-accent mt-[20vh] poppins font-semibold text-[1.5rem]">
Payment success
</div>
<div class="poppins">
We hope Lilyx can help you make better metrics-driven decision to help your business.
</div>
<NuxtLink to="/?just_logged=true" class="text-accent mt-10 bg-menu px-6 py-2 rounded-lg hover:bg-black font-semibold poppins cursor-pointer">
Go back to dashboard
</NuxtLink>
</div>
</div>
</template>