Skip to content

Commit f592255

Browse files
authored
chore: add link to auth footer (#1556)
* chore: add link to auth footer * chore: remove return statement * chore: docs gen * chore: remove "noreferrer" * chore: update link * chore: build docs * fix: include noopener rel
1 parent fd15569 commit f592255

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

account-kit/react/src/components/auth/card/footer/protected-by.tsx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@ import { ls } from "../../../../strings.js";
33

44
// eslint-disable-next-line jsdoc/require-jsdoc
55
export const ProtectedBy = () => (
6-
<div className="flex flex-row gap-1 items-center h-[14px] text-fg-disabled">
6+
// 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+
>
713
<span className="text-[11px] pt-[1px]">{ls.protectedBy.title}</span>
814
<AlchemyLogo />
9-
</div>
15+
</a>
1016
);

0 commit comments

Comments
 (0)