Skip to content

Commit 167e081

Browse files
authored
docs: surfaces tailwind setup guide (#1988)
* docs: surfaces tailwind setup guide * docs: fix theme customization
1 parent ed0b534 commit 167e081

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

docs/docs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,8 @@ navigation:
135135
path: wallets/pages/react/ui-components.mdx
136136
- page: Theme & branding
137137
path: wallets/pages/react/customization/theme.mdx
138+
- page: Tailwind setup
139+
path: wallets/pages/react/customization/tailwind-setup.mdx
138140
- section: Whitelabel
139141
contents:
140142
- page: React hooks

docs/pages/concepts/intro-to-account-kit.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,17 +56,17 @@ In Smart Wallets, this concept will manifest as a [Smart Contract Account](/wall
5656
/>
5757
</div>
5858
</div>
59-
[Using Smart Wallets](/wallets/react/getting-started), you can secure a user’s Smart Account with email, social login, or passkeys, using our non-custodial Signer infrastructure. Smart accounts support advanced use cases, such as multiple owners and ownership transfer, offering more utility than EOAs.
59+
Using Smart Wallets, you can secure a user’s Smart Account with email, social login, or passkeys, using our non-custodial Signer infrastructure. Smart accounts support advanced use cases, such as multiple owners and ownership transfer, offering more utility than EOAs.
6060

6161
With this setup, users can sign-up, log in, and sign transactions using familiar web2 user experiences.
6262

63-
In Smart Wallets, this concept will manifest as a [Smart Account Signer](/wallets/concepts/smart-account-signer).
63+
In Smart Wallets, this concept will manifest as a [Smart Account Signer](/wallets/signer/what-is-a-signer).
6464

6565
## Bundler: transactions → user operations
6666

6767
<div style={{ display: "flex", flexWrap: "wrap", alignItems: "flex-start" }}>
6868
<div style={{ flex: "1", marginRight: "10px" }}>
69-
With Smart Wallets, [sending transactions](/docs/wallets/react/send-user-operations) is as simple as sending "normal" EOA transactions. However, under the hood, you're actually sending [**User Operations (UOs)**](https://www.alchemy.com/overviews/user-operations) — a standardized pseudo-transaction object — to a **Bundler**.
69+
With Smart Wallets, [sending transactions](/docs/wallets/transactions/send/send-user-operations) is as simple as sending "normal" EOA transactions. However, under the hood, you're actually sending [**User Operations (UOs)**](https://www.alchemy.com/overviews/user-operations) — a standardized pseudo-transaction object — to a **Bundler**.
7070

7171
</div>
7272
<div style={{ flex: "0 0 30%" }}>
@@ -80,7 +80,7 @@ With Smart Wallets, [sending transactions](/docs/wallets/react/send-user-operati
8080

8181
A User Operation (UO) is an ABI-encoded struct that describes a transaction to be sent on behalf of a user. Since SCAs cannot initiate transactions on chains without native account abstraction support, they send UOs instead. The Bundler will gather UOs from multiple smart accounts (senders) and bundle them into a single on-chain transaction.
8282

83-
A huge benefit of smart accounts is the ability to [batch transactions](/docs/wallets/react/send-user-operations#batch-user-operation) in one UO creating simpler user experiences. For example, you can now approve and swap in one click, rather than signing, waiting, and sending multiple transactions.
83+
A huge benefit of smart accounts is the ability to [batch transactions](/docs/wallets/transactions/send/batch-user-operations) in one UO creating simpler user experiences. For example, you can now approve and swap in one click, rather than signing, waiting, and sending multiple transactions.
8484

8585
In Smart Wallets, this concept will manifest as a [Bundler Client](/wallets/concepts/bundler-client), but for simplicity you may only need a [Smart Account Client](/wallets/concepts/smart-account-client).
8686

docs/pages/react/ui-components.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Smart Wallets allows you to use pre-built, [highly customizable](https://demo.al
99
- Use the pre-built [modal](#modal-auth) or [embed](#embedded-auth) the auth card directly in your app
1010
- Choose from [multiple authentication methods](#available-authentication-methods)
1111
- Customize [authentication method UI](#customize-authentication-ui)
12-
- Customize [theme](/wallets/pages/react/customization/theme)
12+
- Customize [theme](/wallets/react/customization/theme)
1313

1414
<Tip>
1515
Tailwind CSS is a required dependency for using Alchemy Account Kit UI

0 commit comments

Comments
 (0)