File size: 3,061 Bytes
6076169 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
export const ORIGIN_URL =
process.env.NODE_ENV === "development"
? "http://localhost:3000"
: `${process.env.PRODUCTION_ORIGIN_URL}`;
export const PLANS = [
{
id: "basic",
name: "Basic",
info: "For most individuals",
price: {
monthly: 7,
yearly: Math.round(7 * 12 * (1 - 0.12)),
},
features: [
{ text: "Up to 3 Blog posts", limit: "100 tags" },
{ text: "Up to 3 Transcriptions" },
{ text: "Up to 3 Posts stored" },
{
text: "Markdown support",
tooltip: "Export content in Markdown format",
},
{
text: "Community support",
tooltip: "Get answers your questions on discord",
},
{
text: "AI powered suggestions",
tooltip: "Get up to 100 AI powered suggestions",
},
],
btn: {
text: "Start Your Free Trial",
href: "https://buy.stripe.com/test_eVadT70GKh1ac6Y005",
variant: "default",
},
priceId: process.env.STRIPE_PRICE_ID_BASIC_PLAN,
},
{
id: "pro",
name: "Pro",
info: "For small businesses",
price: {
monthly: 17.99,
yearly: Math.round(17.99 * 12 * (1 - 0.12)),
},
features: [
{ text: "Up to 500 Blog Posts", limit: "500 tags" },
{ text: "Up to 500 Transcriptions" },
{ text: "Up to 500 Posts stored" },
{
text: "Unlimited Markdown support",
tooltip: "Export content in Markdown format",
},
{ text: "SEO optimization tools" },
{ text: "Priority support", tooltip: "Get 24/7 chat support" },
{
text: "AI powered suggestions",
tooltip: "Get up to 500 AI powered suggestions",
},
],
btn: {
text: "Get started",
href: "https://buy.stripe.com/test_cN26qF9dg9yI9YQ3ci",
variant: "purple",
},
priceId: process.env.STRIPE_PRICE_ID_PRO_PLAN,
},
{
name: "Business",
info: "For large organizations",
price: {
monthly: 69.99,
yearly: Math.round(49.99 * 12 * (1 - 0.12)),
},
features: [
{ text: "Unlimited Blog Posts" },
{ text: "Unlimited Transcriptions" },
{ text: "Unlimited Posts stored" },
{ text: "Unlimited Markdown support" },
{
text: "SEO optimization tools",
tooltip: "Advanced SEO optimization tools",
},
{ text: "Priority support", tooltip: "Get 24/7 chat support" },
{
text: "AI powered suggestions",
tooltip: "Get up to 500 AI powered suggestions",
},
],
btn: {
text: "Contact team",
href: "mailto:anayat0khan@gmail.com",
variant: "default",
},
},
];
export const PRICING_FEATURES = [
{
text: "Shorten links",
tooltip: "Create shortened links",
},
{
text: "Track clicks",
tooltip: "Track clicks on your links",
},
{
text: "See top countries",
tooltip: "See top countries where your links are clicked",
},
{
text: "Upto 10 tags",
tooltip: "Add upto 10 tags to your links",
},
{
text: "Community support",
tooltip: "Community support is available for free users",
},
{
text: "Priority support",
tooltip: "Get priority support from our team",
},
{
text: "AI powered suggestions",
tooltip: "Get AI powered suggestions for your links",
},
];
export const WORKSPACE_LIMIT = 2;
|