diff --git a/learn/react-native/wmx-docs/creating-wmx-widget-with-ai.md b/learn/react-native/wmx-docs/creating-wmx-widget-with-ai.md
index 558e11ecd..282c23058 100644
--- a/learn/react-native/wmx-docs/creating-wmx-widget-with-ai.md
+++ b/learn/react-native/wmx-docs/creating-wmx-widget-with-ai.md
@@ -5,19 +5,14 @@ sidebar_label: "Create WMX Widget with AI Tools"
---
---
-import colorpicker from '/learn/assets/react-native/wmx/colorpicker.mp4'
-import reservation from '/learn/assets/react-native/wmx/reservation.mp4'
import wmxColorPicker from '/learn/assets/react-native/wmx/wmxColorPicker.png'
+import wmxSeatReservation from '/learn/assets/react-native/wmx/wmxSeatReservation.png'
-WMX Widgets are designed to work seamlessly with AI-assisted coding tools, making it faster and easier to develop, refine, and integrate custom widgets into your WaveMaker App.
-This guide demonstrates how AI can help you create WMX widgets quickly and efficiently.
+WMX Widgets are designed to work seamlessly with AI-assisted coding tools, making it faster and easier to develop, refine, and integrate custom widgets into your WaveMaker App. This guide demonstrates how AI can help you create WMX widgets quickly and efficiently.
-Instructions about widget structure are already provided in your project at: `src/main/webapp/extensions/components/src/readme.md`
-So, when working with AI tools, you can skip boilerplate details and focus directly on building your custom component.
+Instructions about widget structure are already provided in your project at: `src/main/webapp/extensions/components/src/readme.md`. So, when working with AI tools, you can skip boilerplate details and focus directly on building your custom component.
-In the following examples, we’ll use **Cursor**, but you can use any preferred AI tool.
-
----
+In the following examples, we’ll use **[Cursor](https://cursor.com/)**, but you can use any preferred AI tool.
## Steps to create WMX widgets using AI tools
@@ -31,72 +26,97 @@ In the following examples, we’ll use **Cursor**, but you can use any preferred
5. Review the generated code carefully and make fixes if required (via Cursor or manually).
6. Once verified, push your changes.
----
-
## Examples
-### Example 1: Color Picker Widget
-Create a flexible, feature-rich color picker. We will use the `reanimated-color-picker` library to implement it.
+### Example 1: Text-to-Widget Generation
-
+Building a Color Picker widget with [`reanimated-color-picker`](https://www.npmjs.com/package/reanimated-color-picker) using AI.
-**Prompt:**
-```
-create a WMX widget to use the reanimated-color-picker library
-```
-
+
----
+
+
+
+
+### Example 2: Image-to-Widget Generation
+
+Using AI to convert a UI mockup into a functional Seat Reservation widget.
+
+
+
+
+
+
-### Example 2: Restaurant Reservation Widget
-Generate a reservation component directly from a UI design image.
-**Prompt:**
-```
-create a WMX widget for this UI
-```
+## Best Practices
-
+### Effective Prompting
+- **Be Detailed**: Specify required libraries, features, and behavior patterns
+- **Include Context**: Share mockups or existing implementations when available
+- **Build Gradually**: Start simple, then enhance with additional features
----
+### Quality Assurance
+- **Review Code**: Check for edge cases and potential issues
+- **Test Components**: Verify functionality, dependencies, and accessibility standards
-## Best Practices
+## Troubleshooting Common Issues
-### Prompt Engineering
-- **Be specific**: Include exact library names, desired features, and expected behavior
-- **Provide context**: Share UI mockups, requirements, or existing code when relevant
-- **Iterate incrementally**: Start with basic functionality, then add features progressively
+### Handling Dependency Issues
+When AI suggests using external libraries that aren't available in your environment, you have several options:
-### Code Review Guidelines
-- **Always review AI-generated code** before deployment
-- **Test thoroughly**: AI can introduce subtle bugs or edge cases
-- **Verify dependencies**: Ensure all imported libraries are properly configured
-- **Check accessibility**: Validate that widgets meet accessibility standards
+1. **Add the Required Library**
+ - Follow the [dependency addition guide](./create-wmx-widget#adding-external-dependencies) to properly integrate the library
-## Troubleshooting Common Issues
+2. **Request Alternatives**
+ - Ask AI for alternative solutions using:
+ - Different libraries that are already available
+ - Vanilla JavaScript implementation
+ - Built-in React Native components
-### Dependency Problems
-If the AI suggests libraries not available in your environment:
-- Ask it to provide alternative implementations
-- Request vanilla JavaScript solutions
-- Specify your available library constraints upfront
+3. **Prevent Issues**
+ - Before starting, specify your environment's constraints
+ - List available libraries that AI can use
+ - Mention any size or performance requirements
### Structure Compliance
If generated widgets don't follow WMX standards:
-- Reference the readme file at `src/main/webapp/extensions/components/src/readme.md`
+- Reference the `readme` file at `src/main/webapp/extensions/components/src/readme.md`
- Ask the AI to restructure according to WMX requirements
- Validate against existing working widgets in your project
-:::warning Important Reminder
+:::warning
Always carefully review and test AI-generated code before deploying to production. While AI tools are powerful, they can make mistakes or miss edge cases that require human oversight.
:::
diff --git a/website/static/learn/assets/react-native/wmx/colorpicker.mp4 b/website/static/learn/assets/react-native/wmx/colorpicker.mp4
deleted file mode 100644
index ff90c5394..000000000
Binary files a/website/static/learn/assets/react-native/wmx/colorpicker.mp4 and /dev/null differ
diff --git a/website/static/learn/assets/react-native/wmx/reservation.mp4 b/website/static/learn/assets/react-native/wmx/reservation.mp4
deleted file mode 100644
index 19581a0e7..000000000
Binary files a/website/static/learn/assets/react-native/wmx/reservation.mp4 and /dev/null differ
diff --git a/website/static/learn/assets/react-native/wmx/wmxColorPicker.png b/website/static/learn/assets/react-native/wmx/wmxColorPicker.png
index 18cceb2ec..775079543 100644
Binary files a/website/static/learn/assets/react-native/wmx/wmxColorPicker.png and b/website/static/learn/assets/react-native/wmx/wmxColorPicker.png differ
diff --git a/website/static/learn/assets/react-native/wmx/wmxSeatReservation.png b/website/static/learn/assets/react-native/wmx/wmxSeatReservation.png
new file mode 100644
index 000000000..01814a96d
Binary files /dev/null and b/website/static/learn/assets/react-native/wmx/wmxSeatReservation.png differ