diff --git a/README.md b/README.md
index 6cb5023..88ebbed 100644
--- a/README.md
+++ b/README.md
@@ -68,8 +68,10 @@ This library now ships with dedicated documentation files for each component in
- [List](docs/List.md) (covers List and ListItem)
- [Modal](docs/Modal.md)
- [Odometer](docs/Odometer.md) (component + `useOdometer` hook)
+- [Popover](docs/Popover.md)
- [ScrollArea](docs/ScrollArea.md)
- [Select](docs/Select.md)
+- [Shift](docs/Shift.md)
- [SvgSprite](docs/SvgSprite.md)
- [Switch](docs/Switch.md)
- [Tabs](docs/Tabs.md) (includes `Tabs`, `TabsList`, `TabsTrigger`, `TabsContent`)
@@ -77,6 +79,7 @@ This library now ships with dedicated documentation files for each component in
- [TextArea](docs/TextArea.md)
- [TextField](docs/TextField.md)
- [Toast](docs/Toast.md)
+- [ToggleGroup](docs/ToggleGroup.md)
- [Tooltip](docs/Tooltip.md)
- [Truncate](docs/Truncate.md)
- [TruncateList](docs/TruncateList.md)
diff --git a/docs/Popover.md b/docs/Popover.md
new file mode 100644
index 0000000..a86cef6
--- /dev/null
+++ b/docs/Popover.md
@@ -0,0 +1,136 @@
+### Popover
+
+Documentation for the Popover component and its subcomponents: Popover, PopoverTrigger, PopoverContent, PopoverAnchor, PopoverClose. The implementation is built on top of `@radix-ui/react-popover` and adds visual features, support for global configuration, and additional props.
+
+See the official Radix documentation: https://www.radix-ui.com/primitives/docs/components/popover
+
+#### Import
+
+```ts
+import {Popover, PopoverTrigger, PopoverContent, PopoverAnchor, PopoverClose} from "addon-ui";
+```
+
+#### Basic usage
+
+```tsx
+
+ Open Popover
+
+