diff --git a/src/Toolkit/kits/shadcn/docs/components/Alert.md b/src/Toolkit/kits/shadcn/docs/components/Alert.md
index 14de9f32083..5317941445c 100644
--- a/src/Toolkit/kits/shadcn/docs/components/Alert.md
+++ b/src/Toolkit/kits/shadcn/docs/components/Alert.md
@@ -1,6 +1,6 @@
# Alert
-Displays a callout for user attention.
+A notification component that displays important messages with an icon, title, and description.
```twig {"preview":true}
@@ -44,4 +44,4 @@ Displays a callout for user attention.
Your session has expired. Please log in again.
-```
+```
diff --git a/src/Toolkit/kits/shadcn/docs/components/AspectRatio.md b/src/Toolkit/kits/shadcn/docs/components/AspectRatio.md
index 43128d8604b..4c8e2d32865 100644
--- a/src/Toolkit/kits/shadcn/docs/components/AspectRatio.md
+++ b/src/Toolkit/kits/shadcn/docs/components/AspectRatio.md
@@ -1,11 +1,11 @@
# AspectRatio
-The AspectRatio component is a component that allows you to display an element with a specific aspect ratio.
+A container that maintains a specific width-to-height ratio for its content.
```twig {"preview":true,"height":"400px"}
-
@@ -26,8 +26,8 @@ The AspectRatio component is a component that allows you to display an element w
```twig {"preview":true,"height":"400px"}
-
@@ -38,8 +38,8 @@ The AspectRatio component is a component that allows you to display an element w
```twig {"preview":true,"height":"400px"}
-
diff --git a/src/Toolkit/kits/shadcn/docs/components/Avatar.md b/src/Toolkit/kits/shadcn/docs/components/Avatar.md
index 08b085b3533..022831b0ba9 100644
--- a/src/Toolkit/kits/shadcn/docs/components/Avatar.md
+++ b/src/Toolkit/kits/shadcn/docs/components/Avatar.md
@@ -1,6 +1,6 @@
# Avatar
-A component for displaying user profile images with a fallback for when the image is not available.
+A circular element that displays a user's profile image or initials as a fallback.
```twig {"preview":true}
@@ -53,4 +53,4 @@ A component for displaying user profile images with a fallback for when the imag
FP
-```
+```
diff --git a/src/Toolkit/kits/shadcn/docs/components/Badge.md b/src/Toolkit/kits/shadcn/docs/components/Badge.md
index 492401d192b..68c13efb739 100644
--- a/src/Toolkit/kits/shadcn/docs/components/Badge.md
+++ b/src/Toolkit/kits/shadcn/docs/components/Badge.md
@@ -1,6 +1,6 @@
# Badge
-A component for displaying short pieces of information, such as counts, labels, or status indicators.
+A small element that displays status, counts, or labels with optional icons.
```twig {"preview":true}
Badge
@@ -53,4 +53,4 @@ A component for displaying short pieces of information, such as counts, labels,
Verified
-```
+```
diff --git a/src/Toolkit/kits/shadcn/docs/components/Breadcrumb.md b/src/Toolkit/kits/shadcn/docs/components/Breadcrumb.md
index 7b720e9af7f..680e7b8558f 100644
--- a/src/Toolkit/kits/shadcn/docs/components/Breadcrumb.md
+++ b/src/Toolkit/kits/shadcn/docs/components/Breadcrumb.md
@@ -1,6 +1,6 @@
# Breadcrumb
-A navigation component that displays the current page's location within a website's hierarchy.
+A navigation element that shows the current page's location in the site hierarchy with clickable links.
```twig {"preview":true}
diff --git a/src/Toolkit/kits/shadcn/docs/components/Button.md b/src/Toolkit/kits/shadcn/docs/components/Button.md
index 82a7c655824..8dd9530b0ce 100644
--- a/src/Toolkit/kits/shadcn/docs/components/Button.md
+++ b/src/Toolkit/kits/shadcn/docs/components/Button.md
@@ -1,6 +1,6 @@
# Button
-A button component that can be used to trigger actions or events.
+A clickable element that triggers actions or events, supporting various styles and states.
```twig {"preview":true}
@@ -30,37 +30,37 @@ A button component that can be used to trigger actions or events.
```twig {"preview":true}
Button
-```
+```
### Secondary
```twig {"preview":true}
Outline
-```
+```
### Destructive
```twig {"preview":true}
Destructive
-```
+```
### Outline
```twig {"preview":true}
Outline
-```
+```
### Ghost
```twig {"preview":true}
Ghost
-```
+```
### Link
```twig {"preview":true}
Link
-```
+```
### Icon
@@ -68,7 +68,7 @@ A button component that can be used to trigger actions or events.
-```
+```
### With Icon
@@ -76,7 +76,7 @@ A button component that can be used to trigger actions or events.
Login with Email
-```
+```
### Loading
@@ -84,4 +84,4 @@ A button component that can be used to trigger actions or events.
Please wait
-```
+```
diff --git a/src/Toolkit/kits/shadcn/docs/components/Card.md b/src/Toolkit/kits/shadcn/docs/components/Card.md
index 3c6bd140da6..f482b75f2e4 100644
--- a/src/Toolkit/kits/shadcn/docs/components/Card.md
+++ b/src/Toolkit/kits/shadcn/docs/components/Card.md
@@ -1,6 +1,6 @@
# Card
-A container component for displaying content in a clear, structured format with optional header, content, and footer sections.
+A container that groups related content and actions into a box with optional header, content, and footer sections.
```twig {"preview":true,"height":"300px"}
@@ -71,14 +71,14 @@ A container component for displaying content in a clear, structured format with
{{ notification.description }}
-
+
{%- endfor -%}
-
+
Mark all as read
-```
+```
diff --git a/src/Toolkit/kits/shadcn/docs/components/Input.md b/src/Toolkit/kits/shadcn/docs/components/Input.md
index 8a01c3c4ead..de0b816a9d6 100644
--- a/src/Toolkit/kits/shadcn/docs/components/Input.md
+++ b/src/Toolkit/kits/shadcn/docs/components/Input.md
@@ -1,6 +1,6 @@
# Input
-A form input component for text, email, password, and other input types.
+A form control that allows users to enter text, numbers, or select files.
```twig {"preview":true}
diff --git a/src/Toolkit/kits/shadcn/docs/components/Label.md b/src/Toolkit/kits/shadcn/docs/components/Label.md
index 5280ab98666..ea41f854987 100644
--- a/src/Toolkit/kits/shadcn/docs/components/Label.md
+++ b/src/Toolkit/kits/shadcn/docs/components/Label.md
@@ -1,6 +1,6 @@
# Label
-A component for labeling form elements and other content.
+A text element that identifies form controls and other content.
```twig {"preview":true}
diff --git a/src/Toolkit/kits/shadcn/docs/components/Pagination.md b/src/Toolkit/kits/shadcn/docs/components/Pagination.md
index 71135b10f00..0efbea5159f 100644
--- a/src/Toolkit/kits/shadcn/docs/components/Pagination.md
+++ b/src/Toolkit/kits/shadcn/docs/components/Pagination.md
@@ -1,6 +1,6 @@
# Pagination
-A component for navigating through paginated content with page numbers and navigation controls.
+A navigation component that displays page numbers and controls for moving between pages.
```twig {"preview":true}
diff --git a/src/Toolkit/kits/shadcn/docs/components/Progress.md b/src/Toolkit/kits/shadcn/docs/components/Progress.md
index aa769256a6c..c2c89234a73 100644
--- a/src/Toolkit/kits/shadcn/docs/components/Progress.md
+++ b/src/Toolkit/kits/shadcn/docs/components/Progress.md
@@ -1,6 +1,6 @@
# Progress
-A component for displaying progress of a task or operation.
+A visual indicator that shows the completion status of a task or operation.
```twig {"preview":true}
diff --git a/src/Toolkit/kits/shadcn/docs/components/Select.md b/src/Toolkit/kits/shadcn/docs/components/Select.md
index 7fe10102b93..91941c0fafe 100644
--- a/src/Toolkit/kits/shadcn/docs/components/Select.md
+++ b/src/Toolkit/kits/shadcn/docs/components/Select.md
@@ -1,6 +1,6 @@
# Select
-A form component for selecting an option from a dropdown list.
+A dropdown control that allows users to choose from a list of options.
```twig {"preview":true}
diff --git a/src/Toolkit/kits/shadcn/docs/components/Separator.md b/src/Toolkit/kits/shadcn/docs/components/Separator.md
index 3117d58b272..038197b45df 100644
--- a/src/Toolkit/kits/shadcn/docs/components/Separator.md
+++ b/src/Toolkit/kits/shadcn/docs/components/Separator.md
@@ -1,6 +1,6 @@
# Separator
-A component for creating visual separators between content.
+A visual divider that creates space between content elements, available in horizontal and vertical orientations.
```twig {"preview":true}
diff --git a/src/Toolkit/kits/shadcn/docs/components/Skeleton.md b/src/Toolkit/kits/shadcn/docs/components/Skeleton.md
index b01bf5f940c..4c16a2c64bc 100644
--- a/src/Toolkit/kits/shadcn/docs/components/Skeleton.md
+++ b/src/Toolkit/kits/shadcn/docs/components/Skeleton.md
@@ -1,6 +1,6 @@
# Skeleton
-A component for displaying a loading state with a placeholder animation.
+A placeholder element that displays a loading state with an animated background.
```twig {"preview":true}
diff --git a/src/Toolkit/kits/shadcn/docs/components/Switch.md b/src/Toolkit/kits/shadcn/docs/components/Switch.md
index e143138ae94..17fa899f49f 100644
--- a/src/Toolkit/kits/shadcn/docs/components/Switch.md
+++ b/src/Toolkit/kits/shadcn/docs/components/Switch.md
@@ -1,6 +1,6 @@
# Switch
-A toggle switch component for boolean input.
+A toggle control that switches between on and off states.
```twig {"preview":true}
diff --git a/src/Toolkit/kits/shadcn/docs/components/Table.md b/src/Toolkit/kits/shadcn/docs/components/Table.md
index 24c8b16cd34..302d6bc91e2 100644
--- a/src/Toolkit/kits/shadcn/docs/components/Table.md
+++ b/src/Toolkit/kits/shadcn/docs/components/Table.md
@@ -1,6 +1,6 @@
# Table
-A component for displaying structured data in rows and columns with support for headers, captions, and customizable styling.
+A structured grid element that organizes data into rows and columns, supporting headers, captions, and footers.
```twig {"preview":true,"height":"400px"}
{%- set invoices = [
@@ -80,4 +80,4 @@ A component for displaying structured data in rows and columns with support for
-```
+```
diff --git a/src/Toolkit/kits/shadcn/docs/components/Textarea.md b/src/Toolkit/kits/shadcn/docs/components/Textarea.md
index bf6a752d439..b9babc362c9 100644
--- a/src/Toolkit/kits/shadcn/docs/components/Textarea.md
+++ b/src/Toolkit/kits/shadcn/docs/components/Textarea.md
@@ -1,6 +1,6 @@
# Textarea
-A multi-line text input component for longer text content.
+A form control for entering multiple lines of text.
```twig {"preview":true}