{cats.map((c) => {
const { line1, line2 } = categoryCardLines(c.name);
return (
diff --git a/src/pages/WalletPage.tsx b/src/pages/WalletPage.tsx
index b444f64..200a8e4 100644
--- a/src/pages/WalletPage.tsx
+++ b/src/pages/WalletPage.tsx
@@ -1,5 +1,9 @@
+import { RainbowKitProvider, darkTheme } from "@rainbow-me/rainbowkit";
+import { WagmiProvider } from "wagmi";
+import "@rainbow-me/rainbowkit/styles.css";
import { WalletLoginControls } from "../components/WalletLoginControls";
import { useI18n } from "../i18n";
+import { wagmiConfig } from "../wagmiConfig";
export function WalletPage() {
const { t } = useI18n();
@@ -16,7 +20,27 @@ export function WalletPage() {
{t("walletStepSign")}
-
+ {import.meta.env.VITE_WALLETCONNECT_PROJECT_ID ? (
+
+
+
+
+
+ ) : (
+
+ {t("walletSetupNeeded")}
+
+ )}