diff --git a/docs/mint.json b/docs/mint.json
index 195f95df7f..2610de9eda 100644
--- a/docs/mint.json
+++ b/docs/mint.json
@@ -213,7 +213,8 @@
"platform/atoms/event-type",
"platform/atoms/calendar-settings",
"platform/atoms/payment-form",
- "platform/atoms/conferencing-apps"
+ "platform/atoms/conferencing-apps",
+ "platform/atoms/calendar-view"
]
},
{
diff --git a/docs/platform/atoms/calendar-view.mdx b/docs/platform/atoms/calendar-view.mdx
new file mode 100644
index 0000000000..52bd1a063e
--- /dev/null
+++ b/docs/platform/atoms/calendar-view.mdx
@@ -0,0 +1,61 @@
+---
+title: "Calendar view"
+---
+
+The calendar view atom is basically a weekly calendar view wherein users can see entire week at a glance, clearly showing both available and unavailable time slots. This view is designed to provide a comprehensive and easy-to-read schedule, helping users quickly identify open slots for booking or planning.
+
+## Individual event type
+
+Below code snippet can be used to render the calendar view atom for an individual event
+
+```js
+import { CalendarView } from "@calcom/atoms";
+
+export default function Booker( props : BookerProps ) {
+ return (
+
+
+
+ )
+}
+```
+
+## Team event type
+
+Below code snippet can be used to render the calendar view atom for a team event
+
+```js
+import { CalendarView } from "@calcom/atoms";
+
+export default function Booker( props : BookerProps ) {
+ return (
+
+
+
+ )
+}
+```
+
+For a demonstration of the calendar view atom, please refer to the video below.
+
+
+
+
+
+
+
+Below is a list of props that can be passed to the create event type atom
+
+| Name | Required | Description |
+|:----------------------------|:----------|:-------------------------------------------------------------------------------------------------------|
+| username | Yes | Username of the person whose schedule is to be displayed |
+| eventSlug | Yes | Unique slug created for a particular event | |
+| isTeamEvent | No | Boolean indicating if it is a team event, to be passed only for team events |
+| teamId | No | The id of the team for which the event is created, to be passed only for team events |
\ No newline at end of file
diff --git a/docs/platform/atoms/event-type.mdx b/docs/platform/atoms/event-type.mdx
index 487080bde6..d83a7bdf1e 100644
--- a/docs/platform/atoms/event-type.mdx
+++ b/docs/platform/atoms/event-type.mdx
@@ -332,7 +332,7 @@ Below video shows a demonstration of the all the options you get in the advanced