import { ExternalLinkIcon } from "@heroicons/react/solid"; import { useLocale } from "@lib/hooks/useLocale"; import SettingsShell from "@components/SettingsShell"; import Shell from "@components/Shell"; import Button from "@components/ui/Button"; export default function Billing() { const { t } = useLocale(); return (

{t("view_and_manage_billing_details")}

{t("view_and_edit_billing_details")}

{t("need_anything_else")}

{t("further_billing_help")}

); }