diff --git a/examples/chat/.gitignore b/examples/chat/.gitignore
deleted file mode 100644
index f06235c4..00000000
--- a/examples/chat/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-node_modules
-dist
diff --git a/examples/chat/DESIGN.md b/examples/chat/DESIGN.md
deleted file mode 100644
index 1fd8bf24..00000000
--- a/examples/chat/DESIGN.md
+++ /dev/null
@@ -1,20 +0,0 @@
-## Chat Design
-
-Building a real-time messaging platform without a dedicated server.
-
-### Description
-
-This chat is a single channel, where multiple people can write and read messages.
-
-#### Message.index
-
-```typescript
-{
- username: string;
- message_id: number;
- timestamp: number;
- content: string;
-}
-```
-
-We can query for messages sent by a specific user or by a specific date or time.
diff --git a/examples/chat/README.md b/examples/chat/README.md
deleted file mode 100644
index b1fd8937..00000000
--- a/examples/chat/README.md
+++ /dev/null
@@ -1,24 +0,0 @@
-```bash
-$ npm install
-```
-
-In the project directory, you can run:
-
-### `npm run dev` or `npm start`
-
-Runs the app in the development mode.
-Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
-
-The page will reload if you make edits.
-
-### `npm run build`
-
-Builds the app for production to the `dist` folder.
-It correctly bundles Solid in production mode and optimizes the build for the best performance.
-
-The build is minified and the filenames include the hashes.
-Your app is ready to be deployed!
-
-## Deployment
-
-You can deploy the `dist` folder to any static host provider (netlify, surge, now, etc.)
diff --git a/examples/chat/declarations.d.ts b/examples/chat/declarations.d.ts
deleted file mode 100644
index 229aee5f..00000000
--- a/examples/chat/declarations.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-declare module "*.js";
diff --git a/examples/chat/index.html b/examples/chat/index.html
deleted file mode 100644
index ffc008c0..00000000
--- a/examples/chat/index.html
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
Loading...
} - {messages.error &&Error loading messages
} - {messages()?.map((message) => { - return ( -- {message.content} - {readTime(message.timestamp)} -
-{title}
- - ); - })} -{username}
-A Chatting Platform without a conventional server with Appendable
-Username: {username}
-