feat: scaffhold subscription table and ui

This commit is contained in:
Mythie
2023-05-05 19:29:42 +10:00
parent bf84ec8962
commit ed3e4d22ef
19 changed files with 2128 additions and 32 deletions

View File

@ -0,0 +1,12 @@
export const STRIPE_PLANS = [
{
name: "Community Plan",
period: "monthly",
priceId: process.env.STRIPE_COMMUNITY_PLAN_MONTHLY_PRICE_ID ?? "",
},
{
name: "Community Plan",
period: "yearly",
priceId: process.env.STRIPE_COMMUNITY_PLAN_YEARLY_PRICE_ID ?? "",
},
];