el.xwx.moe/pages/subscribe.tsx

117 lines
4.0 KiB
TypeScript
Raw Normal View History

import { signOut, useSession } from "next-auth/react";
2023-10-18 23:09:28 -05:00
import { useState } from "react";
import { toast } from "react-hot-toast";
import { useRouter } from "next/router";
2023-08-01 15:20:05 -05:00
import CenteredForm from "@/layouts/CenteredForm";
2023-09-10 23:20:31 -05:00
import { Plan } from "@/types/global";
export default function Subscribe() {
const [submitLoader, setSubmitLoader] = useState(false);
const session = useSession();
2023-10-11 12:19:13 -05:00
const [plan, setPlan] = useState<Plan>(1);
2023-09-10 23:20:31 -05:00
const router = useRouter();
async function submit() {
setSubmitLoader(true);
const redirectionToast = toast.loading("Redirecting to Stripe...");
const res = await fetch("/api/v1/payment?plan=" + plan);
const data = await res.json();
router.push(data.response);
}
return (
2023-08-01 15:20:05 -05:00
<CenteredForm
2023-09-10 23:20:31 -05:00
text={`Start with a ${
2023-08-01 15:20:05 -05:00
process.env.NEXT_PUBLIC_TRIAL_PERIOD_DAYS || 14
2023-09-10 23:20:31 -05:00
}-day free trial, cancel anytime!`}
2023-08-01 15:20:05 -05:00
>
<div className="p-4 mx-auto flex flex-col gap-3 justify-between max-w-[30rem] min-w-80 w-full bg-slate-50 dark:bg-neutral-800 rounded-2xl shadow-md border border-neutral-content">
<p className="sm:text-3xl text-2xl text-center font-extralight">
2023-08-01 15:20:05 -05:00
Subscribe to Linkwarden!
</p>
<hr className="border-1 border-neutral-content" />
<div>
2023-08-01 15:20:05 -05:00
<p>
2023-09-10 23:20:31 -05:00
You will be redirected to Stripe, feel free to reach out to us at{" "}
2023-07-20 17:23:57 -05:00
<a className="font-semibold" href="mailto:support@linkwarden.app">
support@linkwarden.app
2023-07-15 23:18:49 -05:00
</a>{" "}
2023-09-10 23:20:31 -05:00
in case of any issue.
</p>
</div>
<div className="flex text-white dark:text-black gap-3 border border-solid border-neutral-content w-4/5 mx-auto p-1 rounded-xl relative">
2023-09-10 23:20:31 -05:00
<button
onClick={() => setPlan(Plan.monthly)}
2023-11-24 07:39:55 -06:00
className={`w-full duration-100 text-sm rounded-lg p-1 ${
2023-09-10 23:20:31 -05:00
plan === Plan.monthly
? "text-white bg-sky-700 dark:bg-sky-700"
: "hover:opacity-80"
}`}
>
<p>Monthly</p>
</button>
<button
onClick={() => setPlan(Plan.yearly)}
2023-11-24 07:39:55 -06:00
className={`w-full duration-100 text-sm rounded-lg p-1 ${
2023-09-10 23:20:31 -05:00
plan === Plan.yearly
? "text-white bg-sky-700 dark:bg-sky-700"
: "hover:opacity-80"
}`}
>
<p>Yearly</p>
</button>
2023-10-06 00:39:16 -05:00
<div className="absolute -top-3 -right-4 px-1 bg-red-500 text-sm text-white rounded-md rotate-[22deg]">
25% Off
2023-09-10 23:20:31 -05:00
</div>
</div>
<div className="flex flex-col gap-2 justify-center items-center">
<p className="text-3xl">
${plan === Plan.monthly ? "4" : "3"}
2023-11-25 04:39:56 -06:00
<span className="text-base text-neutral">/mo</span>
2023-09-10 23:20:31 -05:00
</p>
<p className="font-semibold">
Billed {plan === Plan.monthly ? "Monthly" : "Yearly"}
2023-07-15 23:18:49 -05:00
</p>
<fieldset className="w-full flex-col flex justify-evenly px-4 pb-4 pt-1 rounded-md border border-neutral-content">
<legend className="w-fit font-extralight px-2 border border-neutral rounded-md text-xl">
Total
</legend>
<p className="text-sm">
{process.env.NEXT_PUBLIC_TRIAL_PERIOD_DAYS}-day free trial, then $
{plan === Plan.monthly ? "4 per month" : "36 annually"}
</p>
<p className="text-sm">+ VAT if applicable</p>
</fieldset>
</div>
<button
className={`border primary-btn-gradient select-none duration-100 bg-black border-[#0071B7] hover:border-[#059bf8] rounded-lg text-center px-4 py-2 text-slate-200 hover:text-white `}
onClick={() => {
if (!submitLoader) submit();
}}
>
<p className="text-center w-full font-bold">Complete Subscription!</p>
</button>
<div
onClick={() => signOut()}
2023-11-25 04:39:56 -06:00
className="w-fit mx-auto cursor-pointer text-neutral font-semibold "
>
Sign Out
</div>
</div>
2023-08-01 15:20:05 -05:00
</CenteredForm>
);
}