mirror of
https://github.com/documenso/documenso.git
synced 2025-11-16 01:32:06 +10:00
15 lines
367 B
TypeScript
15 lines
367 B
TypeScript
export const STRIPE_PLANS = [
|
|
{
|
|
name: "Community Plan (Monthly)",
|
|
period: "monthly",
|
|
price: 30,
|
|
priceId: process.env.NEXT_PUBLIC_STRIPE_COMMUNITY_PLAN_MONTHLY_PRICE_ID ?? "",
|
|
},
|
|
{
|
|
name: "Community Plan (Yearly)",
|
|
period: "yearly",
|
|
price: 300,
|
|
priceId: process.env.NEXT_PUBLIC_STRIPE_COMMUNITY_PLAN_YEARLY_PRICE_ID ?? "",
|
|
},
|
|
];
|