diff --git a/.env b/.env
index 25a9560..6ef7cd9 100644
--- a/.env
+++ b/.env
@@ -1,3 +1,11 @@
-VITE_NETWORK="signet"
+# LOCALHOST REGTEST
+
+VITE_NETWORK="regtest"
VITE_PROXY="wss://p.mutinywallet.com"
-VITE_ESPLORA="https://mutinynet.com/api"
\ No newline at end of file
+VITE_ESPLORA="http://localhost:3003"
+
+#SIGNET
+
+# VITE_NETWORK="signet"
+# VITE_PROXY="wss://p.mutinywallet.com"
+# VITE_ESPLORA="https://mutinynet.com/api"
\ No newline at end of file
diff --git a/src/components/App.tsx b/src/components/App.tsx
index 485bd08..f621694 100644
--- a/src/components/App.tsx
+++ b/src/components/App.tsx
@@ -2,12 +2,10 @@ import logo from '~/assets/icons/mutiny-logo.svg';
import BalanceBox from "~/components/BalanceBox";
import SafeArea from "~/components/SafeArea";
import NavBar from "~/components/NavBar";
-import Card from "~/components/Card";
-import { ButtonLink } from "~/components/Button";
-import PeerConnectModal from "~/components/PeerConnectModal";
// TODO: use this reload prompt for real
import ReloadPrompt from "~/components/Reload";
+import KitchenSink from './KitchenSink';
export default function App() {
return (
@@ -18,10 +16,7 @@ export default function App() {