diff --git a/packages/backend/README.md b/packages/backend/README.md
index 8f48979..b07ba02 100644
--- a/packages/backend/README.md
+++ b/packages/backend/README.md
@@ -65,3 +65,7 @@ embedding-atlas path_to_dataset.parquet --x projection_x --y projection_y --neig
The `neighbors` column should have values in the following format: `{"ids": [id1, id2, ...], "distances": [d1, d2, ...]}`.
If this column is specified, you'll be able to see nearest neighbors for a selected point in the tool.
+
+## Local Development
+
+Launch Embedding Altas with a wine reviews dataset with `./start.sh` and the MNIST dataset with `./start_image.sh`.
diff --git a/packages/viewer/README.md b/packages/viewer/README.md
index 147dd13..24dfc1f 100644
--- a/packages/viewer/README.md
+++ b/packages/viewer/README.md
@@ -13,3 +13,5 @@ Start development server:
```bash
npm run dev
```
+
+This will serve Embedding Atlas UI at http://localhost:5173. Note that the UI requires a backend server to provide data to it. You can start one via the `./start.sh` mentioned above. Without a backend server, you can still go to http://localhost:5173/#/test to view a test dataset.
diff --git a/packages/viewer/src/EmbeddingAtlas.svelte b/packages/viewer/src/EmbeddingAtlas.svelte
index b5e3c4b..e34aba7 100644
--- a/packages/viewer/src/EmbeddingAtlas.svelte
+++ b/packages/viewer/src/EmbeddingAtlas.svelte
@@ -20,6 +20,7 @@
import Spinner from "./widgets/Spinner.svelte";
import {
+ IconClose,
IconDarkMode,
IconDashboardLayout,
IconDownload,
@@ -370,19 +371,60 @@
{/if}
-