45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
export const plans = [
|
|
{
|
|
id: 0,
|
|
name: "Basic Plan",
|
|
icon: "profile",
|
|
description: "per user/email month billed annually",
|
|
price: "$9.99",
|
|
details: "one-time payment + Local Taxes",
|
|
features: [
|
|
"1 Image generation",
|
|
"File Sharing",
|
|
"Limited Integration",
|
|
"Limited templates",
|
|
],
|
|
},
|
|
{
|
|
id: 1,
|
|
name: "Premium Plan",
|
|
icon: "rocket",
|
|
description: "per user/email month billed annually",
|
|
price: "$19.99",
|
|
details: "one-time payment + Local Taxes",
|
|
features: [
|
|
"30 Image generation",
|
|
"File Sharing",
|
|
"10 Integration",
|
|
"20 templates",
|
|
],
|
|
},
|
|
{
|
|
id: 2,
|
|
name: "Professional Plan",
|
|
icon: "build",
|
|
description: "per user/email month billed annually",
|
|
price: "Custom",
|
|
details: "one-time payment + Local Taxes",
|
|
features: [
|
|
"unlimited Image generation",
|
|
"File Sharing",
|
|
"unlimited Integration",
|
|
"unlimited Integration",
|
|
],
|
|
},
|
|
];
|