import { usePathname } from "next/navigation"; import { WEBAPP_URL } from "@calcom/lib/constants"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { Button, Meta } from "@calcom/ui"; import { ExternalLink } from "@calcom/ui/components/icon"; import { getLayout } from "../../../settings/layouts/SettingsLayout"; const BillingView = () => { const pathname = usePathname(); const { t } = useLocale(); const returnTo = pathname; const billingHref = `/api/integrations/stripepayment/portal?returnTo=${WEBAPP_URL}${returnTo}`; return ( <>

{t("view_and_manage_billing_details")}

{t("view_and_edit_billing_details")}

); }; BillingView.getLayout = getLayout; export default BillingView;