We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd15569 commit f592255Copy full SHA for f592255
account-kit/react/src/components/auth/card/footer/protected-by.tsx
@@ -3,8 +3,14 @@ import { ls } from "../../../../strings.js";
3
4
// eslint-disable-next-line jsdoc/require-jsdoc
5
export const ProtectedBy = () => (
6
- <div className="flex flex-row gap-1 items-center h-[14px] text-fg-disabled">
+ // eslint-disable-next-line react/jsx-no-target-blank
7
+ <a
8
+ href={`https://www.alchemy.com/?utm_source=auth_modal_footer&utm_medium=sdk&utm_campaign=smart_wallets`}
9
+ target="_blank"
10
+ rel="noopener"
11
+ className="flex flex-row gap-1 items-center h-[14px] text-fg-disabled"
12
+ >
13
<span className="text-[11px] pt-[1px]">{ls.protectedBy.title}</span>
14
<AlchemyLogo />
- </div>
15
+ </a>
16
);
0 commit comments