redesigned settings page [still WIP]

This commit is contained in:
daniel31x13
2023-10-18 17:50:55 -04:00
parent f5eaee8dc0
commit 19467f243f
10 changed files with 561 additions and 249 deletions
+23 -1
View File
@@ -12,7 +12,29 @@ export default function billing() {
return (
<SettingsLayout>
<div>Billing</div>
<div className=" w-full mx-auto flex flex-col gap-3 justify-between">
<p className="text-md text-black dark:text-white">
To manage/cancel your subsciption, visit the{" "}
<a
href={process.env.NEXT_PUBLIC_STRIPE_BILLING_PORTAL_URL}
className="underline"
>
Billing Portal
</a>
.
</p>
<p className="text-md text-black dark:text-white">
If you still need help or encountered any issues, feel free to reach
out to us at:{" "}
<a
className="font-semibold underline"
href="mailto:support@linkwarden.app"
>
support@linkwarden.app
</a>
</p>
</div>
</SettingsLayout>
);
}