diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index e87fc60..ab80e21 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -14,7 +14,7 @@ Thank you for looking into contributing to`daily-demos`! We want these projects
## Before contributing
-### Run prebuilt-ui locally
+### Run /prebuilt locally
Please follow the instructions in `README.md`.
diff --git a/README.md b/README.md
index 03d6b4e..8b9c557 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ Please note: these demos are intended as educational resources for using the Dai
Examples that showcase the Daily call object using our Javascript library
-## [Prebuilt UI](./prebuilt-ui)
+## [Prebuilt UI](./prebuilt)
Examples that showcase using and customizing the Daily Prebuilt UI
diff --git a/package.json b/package.json
index 185400a..91ea47c 100644
--- a/package.json
+++ b/package.json
@@ -5,8 +5,8 @@
"license": "MIT",
"private": true,
"workspaces": [
- "custom/*",
- "prebuilt-ui/*"
+ "dailyjs/*",
+ "prebuilt/*"
],
"engines": {
"node": ">=0.12"
diff --git a/prebuilt/basic-embed/README.md b/prebuilt/basic-embed/README.md
index 7ec5319..17a30e2 100644
--- a/prebuilt/basic-embed/README.md
+++ b/prebuilt/basic-embed/README.md
@@ -16,7 +16,7 @@ You can also paste an existing Daily room into the input. The room URL should be
1. Copy .env.example and change it to an .env.local with your own DAILY_API_KEY and DAILY_DOMAIN
2. `cd basic-embed`
3. yarn
-4. yarn workspace @prebuilt-ui/basic-embed dev
+4. yarn workspace @prebuilt/basic-embed dev
Or...
diff --git a/prebuilt/basic-embed/pages/index.js b/prebuilt/basic-embed/pages/index.js
index ee1c401..8baceda 100644
--- a/prebuilt/basic-embed/pages/index.js
+++ b/prebuilt/basic-embed/pages/index.js
@@ -15,7 +15,7 @@ export default function Index({ isConfigured = false }) {
diff --git a/prebuilt/chat-overlay/README.md b/prebuilt/chat-overlay/README.md
index 84b83e8..bca514c 100644
--- a/prebuilt/chat-overlay/README.md
+++ b/prebuilt/chat-overlay/README.md
@@ -10,7 +10,7 @@
## Getting started
-- Clone this repository and navigate to this folder (`git clone git@github.com:daily-demos/examples.git && cd prebuilt-ui/chat-overlay`)
+- Clone this repository and navigate to this folder (`git clone git@github.com:daily-demos/examples.git && cd prebuilt/chat-overlay`)
- Set `ROOM_URL` on the first line of `main.js` to a Daily room you have created. Sign up and create a room from the [Daily dashboard](https://dashboard.daily.co/signup), if you haven't already!
- Run a server from this repo's directory. You can use something like `python -m SimpleHTTPServer` run on the command line in the repo's directory or use VSCode's Live Server extension. See [How do you set up a local testing server?](https://developer.mozilla.org/en-US/docs/Learn/Common_questions/set_up_a_local_testing_server) for more info.
- Register for a Daily.co account and create a Room [in the dashboard](https://dashboard.daily.co/rooms), and use that room URL on this page. You can join that room directly using other browser tabs or another device.