el.xwx.moe/pages/subscribe.tsx

68 lines
2.0 KiB
TypeScript
Raw Normal View History

import SubmitButton from "@/components/SubmitButton";
import { signOut } from "next-auth/react";
import Image from "next/image";
import { useEffect, useState } from "react";
import { toast } from "react-hot-toast";
import { useSession } from "next-auth/react";
import { useRouter } from "next/router";
2023-08-01 15:20:05 -05:00
import CenteredForm from "@/layouts/CenteredForm";
export default function Subscribe() {
const [submitLoader, setSubmitLoader] = useState(false);
const { data, status } = useSession();
const router = useRouter();
async function loginUser() {
setSubmitLoader(true);
const redirectionToast = toast.loading("Redirecting to Stripe...");
const res = await fetch("/api/payment");
const data = await res.json();
router.push(data.response);
}
return (
2023-08-01 15:20:05 -05:00
<CenteredForm
text={`${
process.env.NEXT_PUBLIC_TRIAL_PERIOD_DAYS || 14
2023-08-14 22:25:25 -05:00
}-Day free trial, then $${
process.env.NEXT_PUBLIC_PRICING
}/month afterwards`}
2023-08-01 15:20:05 -05:00
>
2023-08-14 22:25:25 -05:00
<div className="p-2 mx-auto flex flex-col gap-3 justify-between sm:w-[30rem] dark:border-neutral-700 w-80 bg-slate-50 dark:bg-neutral-800 rounded-2xl shadow-md border border-sky-100">
2023-08-01 15:20:05 -05:00
<p className="text-2xl text-center font-bold">
Subscribe to Linkwarden!
</p>
<div>
2023-08-01 15:20:05 -05:00
<p>You will be redirected to Stripe.</p>
<p>
2023-07-19 15:39:59 -05:00
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>{" "}
in case of any issues.
</p>
</div>
<SubmitButton
onClick={loginUser}
label="Complete your Subscription"
className="mt-2 w-full text-center"
loading={submitLoader}
/>
<div
onClick={() => signOut()}
2023-08-14 22:25:25 -05:00
className="w-fit mx-auto cursor-pointer text-gray-500 dark:text-gray-400 font-semibold "
>
Sign Out
</div>
</div>
2023-08-01 15:20:05 -05:00
</CenteredForm>
);
}