import SettingsLayout from "@/layouts/SettingsLayout"; import { useRouter } from "next/router"; import { useEffect } from "react"; export default function Billing() { const router = useRouter(); useEffect(() => { if (!process.env.NEXT_PUBLIC_STRIPE) router.push("/settings/profile"); }, []); return (

Billing Settings


To manage/cancel your subscription, visit the{" "} Billing Portal .

If you still need help or encountered any issues, feel free to reach out to us at:{" "} support@linkwarden.app

); }