+
+ setDisplayName(e.target.value)}
+ placeholder="Display name (optional)"
+ className="flex-1 border rounded px-3 py-2 text-sm"
+ />
+
+
+
+ {accounts.length === 0 ? (
+
No accounts yet. Add one above to get started.
+ ) : (
+
+ {accounts.map((a) => (
+
+ ))}
+
+ )}
+
+ );
+}
diff --git a/apps/web/app/accounts/page.tsx b/apps/web/app/accounts/page.tsx
index 61c375d..d076132 100644
--- a/apps/web/app/accounts/page.tsx
+++ b/apps/web/app/accounts/page.tsx
@@ -1,4 +1,4 @@
-import { AccountCard } from './AccountCard';
+import { AccountsList } from './AccountsList';
interface Account {
id: string;
@@ -19,15 +19,7 @@ export default async function AccountsPage() {
return (