diff --git a/README.md b/README.md
index 68db2a4..edbf68b 100644
--- a/README.md
+++ b/README.md
@@ -9,16 +9,27 @@
An Onchain App Template build with [OnchainKit](https://onchainkit.xyz), and ready to be deployed to Vercel.
-To ensure all components work seamlessly, set the `NEXT_PUBLIC_CDP_API_KEY` in your `.env` file.
+Play with it live on https://onchain-app-template.vercel.app
-You can find the API KEY on the Node page at the [Coinbase Dev Portal](https://portal.cdp.coinbase.com/products/node).
+Have fun! ⛵️
-Play with it live on https://onchain-app-template.vercel.app
+## Setup
-Have fun! ⛵️
+To ensure all components work seamlessly, set the following environment variables in your `.env` file using `.local.env.example` as a reference.
+
+You can find the API key on the [Coinbase Developer Portal's OnchainKit page](https://portal.cdp.coinbase.com/products/onchainkit). If you don't have an account, you will need to create one.
+You can find your Wallet Connector project ID at [Wallet Connect](https://cloud.walletconnect.com).
+
+```sh
+# See https://portal.cdp.coinbase.com/products/onchainkit
+NEXT_PUBLIC_CDP_API_KEY="GET_FROM_COINBASE_DEVELOPER_PLATFORM"
+
+# See https://cloud.walletconnect.com
+WALLET_CONNECTOR_PROJECT_ID="GET_FROM_WALLET_CONNECT"
+```
## Locally run
@@ -33,6 +44,7 @@ bun i
# Run Next app
bun run dev
```
+
## Resources
diff --git a/src/app/page.tsx b/src/app/page.tsx
index af51003..89ea7f4 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,6 +2,8 @@
import Footer from 'src/components/Footer';
import TransactionWrapper from 'src/components/TransactionWrapper';
import WalletWrapper from 'src/components/WalletWrapper';
+import { ONCHAINKIT_LINK } from 'src/links';
+import OnchainkitSvg from 'src/svg/OnchainkitSvg';
import { useAccount } from 'wagmi';
import LoginButton from '../components/LoginButton';
import SignupButton from '../components/SignupButton';
@@ -13,7 +15,14 @@ export default function Page() {
{title}
+