mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-09 23:48:36 +01:00
add payment_ok page
This commit is contained in:
@@ -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",
|
||||||
|
|||||||
34
dashboard/pages/payment_ok.vue
Normal file
34
dashboard/pages/payment_ok.vue
Normal 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>
|
||||||
Reference in New Issue
Block a user