+ );
}
diff --git a/src/components/layout/BrandPill.tsx b/src/components/layout/BrandPill.tsx
index ea9fc081..929b6d18 100644
--- a/src/components/layout/BrandPill.tsx
+++ b/src/components/layout/BrandPill.tsx
@@ -1,3 +1,4 @@
+import classNames from "classnames";
import { useTranslation } from "react-i18next";
import { Icon, Icons } from "@/components/Icon";
@@ -5,16 +6,19 @@ import { Icon, Icons } from "@/components/Icon";
export function BrandPill(props: {
clickable?: boolean;
hideTextOnMobile?: boolean;
+ backgroundClass?: string;
}) {
const { t } = useTranslation();
return (
}>
+ }>
Oh, you're asking for the key to my top-secret lair, also known as
The Fortress of Wordsmithery, accessed only by reciting the sacred
diff --git a/src/pages/settings/AccountEditPart.tsx b/src/pages/settings/AccountEditPart.tsx
index d2765e30..35f9e645 100644
--- a/src/pages/settings/AccountEditPart.tsx
+++ b/src/pages/settings/AccountEditPart.tsx
@@ -1,9 +1,41 @@
+import { UserAvatar } from "@/components/Avatar";
+import { Button } from "@/components/Button";
+import { Icon, Icons } from "@/components/Icon";
import { SettingsCard } from "@/components/layout/SettingsCard";
+import { AuthInputBox } from "@/components/text-inputs/AuthInputBox";
+import { useAuth } from "@/hooks/auth/useAuth";
export function AccountEditPart() {
+ const { logout } = useAuth();
+
return (
-
-