small changes
This commit is contained in:
parent
42719e5c6b
commit
3ba148caa9
|
@ -24,3 +24,4 @@ PRICE_ID=
|
||||||
NEXT_PUBLIC_TRIAL_PERIOD_DAYS=
|
NEXT_PUBLIC_TRIAL_PERIOD_DAYS=
|
||||||
NEXT_PUBLIC_STRIPE_BILLING_PORTAL_URL=
|
NEXT_PUBLIC_STRIPE_BILLING_PORTAL_URL=
|
||||||
BASE_URL=http://localhost:3000
|
BASE_URL=http://localhost:3000
|
||||||
|
NEXT_PUBLIC_PRICING=
|
|
@ -35,7 +35,7 @@ export default function Subscribe() {
|
||||||
/>
|
/>
|
||||||
<p className="text-xl font-semibold text-sky-500 text-center px-2">
|
<p className="text-xl font-semibold text-sky-500 text-center px-2">
|
||||||
{process.env.NEXT_PUBLIC_TRIAL_PERIOD_DAYS || 14} days free trial, then
|
{process.env.NEXT_PUBLIC_TRIAL_PERIOD_DAYS || 14} days free trial, then
|
||||||
$5/month afterwards
|
${process.env.NEXT_PUBLIC_PRICING}/month afterwards
|
||||||
</p>
|
</p>
|
||||||
<div className="p-2 mt-10 mx-auto flex flex-col gap-3 justify-between sm:w-[30rem] w-80 bg-slate-50 rounded-md border border-sky-100">
|
<div className="p-2 mt-10 mx-auto flex flex-col gap-3 justify-between sm:w-[30rem] w-80 bg-slate-50 rounded-md border border-sky-100">
|
||||||
<div>
|
<div>
|
||||||
|
|
|
@ -17,12 +17,13 @@ declare global {
|
||||||
EMAIL_FROM?: string;
|
EMAIL_FROM?: string;
|
||||||
EMAIL_SERVER?: string;
|
EMAIL_SERVER?: string;
|
||||||
|
|
||||||
NEXT_PUBLC_STRIPE_IS_ACTIVE?: boolean;
|
NEXT_PUBLC_STRIPE_IS_ACTIVE?: string;
|
||||||
STRIPE_SECRET_KEY?: string;
|
STRIPE_SECRET_KEY?: string;
|
||||||
PRICE_ID?: string;
|
PRICE_ID?: string;
|
||||||
NEXT_PUBLIC_STRIPE_BILLING_PORTAL_URL?: string;
|
NEXT_PUBLIC_STRIPE_BILLING_PORTAL_URL?: string;
|
||||||
NEXT_PUBLIC_TRIAL_PERIOD_DAYS?: string;
|
NEXT_PUBLIC_TRIAL_PERIOD_DAYS?: string;
|
||||||
BASE_URL?: string;
|
BASE_URL?: string;
|
||||||
|
NEXT_PUBLIC_PRICING?: string;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Ŝarĝante…
Reference in New Issue