diff --git a/packages/ui/components/dialog/dialog.stories.mdx b/packages/ui/components/dialog/dialog.stories.mdx
new file mode 100644
index 0000000000..e06fe3e75c
--- /dev/null
+++ b/packages/ui/components/dialog/dialog.stories.mdx
@@ -0,0 +1,114 @@
+import { Canvas, Meta, Story } from "@storybook/addon-docs";
+
+import { Title, CustomArgsTable } from "@calcom/storybook/components";
+
+import { Dialog, DialogContent, DialogFooter, DialogClose, DialogHeader } from "./Dialog";
+
+
+
+
+
+## Definition
+
+The `Dialog` component provides a flexible way to create dialogs in your application.
+
+## Structure
+
+The `Dialog` component is composed of the following components:
+
+- `Dialog`: The main component that wraps the entire dialog. It manages the dialog's open and close states.
+
+- `DialogContent`: Represents the content of the dialog. It can have different sizes, types, and an optional icon.
+
+- `DialogHeader`: Renders the header of the dialog, including the title and subtitle.
+
+- `DialogFooter`: Renders the footer of the dialog, which can contain action buttons.
+
+- `DialogClose`: Renders a close button for the dialog.
+
+## Components Arguments
+
+### Dialog
+
+
+
+### DialogContent
+
+
+
+### DialogHeader
+
+
+
+### DialogFooter
+
+
+
+### DialogClose
+
+
+
+## Dialog Story
+
+