+
+
+ Devtools Assets
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/docs/site/pages/overview.mdx b/docs/site/pages/overview.mdx
new file mode 100644
index 0000000..a73c69d
--- /dev/null
+++ b/docs/site/pages/overview.mdx
@@ -0,0 +1,39 @@
+# Devtools-UI
+
+Welcome to Devtools-UI, a monorepo containing a collection of assets packages and an assets plugin designed to be leveraged by [Player-UI](https://player-ui.github.io/).
+
+## Packages
+
+The packages in this repository are designed to be used as assets in Player-UI. Each package is self-contained and can be used independently. They are located in their respective directories under the root of the project.
+
+## Assets Plugin
+
+The assets plugin is a convenient way to use the assets packages in Player-UI. It provides a unified interface for managing and using the assets.
+
+## Getting Started
+
+To get started with Devtools-UI, you need to install the dependencies. We use `pnpm` as the package manager. If you haven't installed it, you can do so by running `npm install -g pnpm`. Then, you can install the dependencies by running `pnpm install`.
+
+## Development
+
+For development, we use Bazel. If you haven't installed it, you can do so by following the instructions on the [Bazel website](https://bazel.build/).
+
+To build the project, you can run `bazel build //...`.
+
+To run the tests, you can run `bazel test //...`.
+
+## Storybook
+
+We use Storybook for developing and showcasing the components. You can start the Storybook server by running `bazel run //docs/storybook:start`. Then, you can open your browser and navigate to `localhost:6006` to view the Storybook.
+
+## Generating Assets
+
+We provide a plop generator for creating new assets. You can run it by executing `pnpm run gen:asset`. It will guide you through the process of creating a new asset.
+
+## Contributing
+
+We welcome contributions! If you find something interesting you want to contribute to the repo, feel free to raise a PR, or open an issue for features you'd like to see added.
+
+## License
+
+Devtools-UI is [MIT licensed](./LICENSE).
diff --git a/docs/site/pages/page.module.css b/docs/site/pages/page.module.css
new file mode 100644
index 0000000..cca6319
--- /dev/null
+++ b/docs/site/pages/page.module.css
@@ -0,0 +1,8 @@
+.main {
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+ align-items: center;
+ padding: 6rem;
+ min-height: 100vh;
+}
diff --git a/docs/site/pages/plugin.mdx b/docs/site/pages/plugin.mdx
new file mode 100644
index 0000000..1683fe0
--- /dev/null
+++ b/docs/site/pages/plugin.mdx
@@ -0,0 +1,49 @@
+# @devtools-ui/plugin
+
+## Overview
+
+`@devtools-ui/plugin` is a [Player-UI](https://player-ui.github.io/next/plugins) assets plugin.
+
+It register the following assets to your React Player instance:
+
+- action
+- collection
+- input
+- list
+- navigation
+- object-inspector
+- text
+- stacked-view
+- table
+- console
+
+## Installation
+
+To install `@devtools-ui/plugin`, you can use pnpm or yarn:
+
+```sh
+pnpm i @devtools-ui/plugin
+```
+
+or
+
+```sh
+yarn add @devtools-ui/plugin
+```
+
+## Usage
+
+You can leverage this plugin through the `@devtools-ui/plugin`:
+
+```ts
+import { ReactPlayer } from "@player-ui/react";
+import DevtoolsUIPlugin from "@devtools-ui/plugin";
+
+const reactPlayer = new ReactPlayer({
+ plugins: [new DevtoolsUIPlugin()],
+});
+```
+
+## Contributing
+
+We welcome contributions to `@devtools-ui/plugin`!
diff --git a/docs/site/pages/team.mdx b/docs/site/pages/team.mdx
new file mode 100644
index 0000000..5224790
--- /dev/null
+++ b/docs/site/pages/team.mdx
@@ -0,0 +1,14 @@
+
+import { DevtoolsTeam } from '../components/DevtoolsTeam'
+
+# Devtools team
+
+## The Team
+
+