+ )}
+
>
);
};
diff --git a/packages/docs/src/components/Sections/Overview/OverviewItem/styles.module.css b/packages/docs/src/components/Sections/Overview/OverviewItem/styles.module.css
index c2e9e5e6f..e41f8e80b 100644
--- a/packages/docs/src/components/Sections/Overview/OverviewItem/styles.module.css
+++ b/packages/docs/src/components/Sections/Overview/OverviewItem/styles.module.css
@@ -3,7 +3,8 @@
justify-content: center;
}
-.media video {
+.media video,
+.media img {
width: 100%;
border-style: solid;
}
@@ -43,13 +44,15 @@
.itemTitle {
font-size: 24px;
}
- .media video {
+ .media video,
+ .media img {
border-width: 1.5rem !important;
}
}
@media (max-width: 430px) {
- .media video {
+ .media video,
+ .media img {
border-width: 10px !important;
}
.itemTitle {
diff --git a/packages/docs/src/components/Sections/Overview/index.tsx b/packages/docs/src/components/Sections/Overview/index.tsx
index 28ed9df04..3b5d58a73 100644
--- a/packages/docs/src/components/Sections/Overview/index.tsx
+++ b/packages/docs/src/components/Sections/Overview/index.tsx
@@ -9,48 +9,56 @@ const items = [
title: "Integrated experience",
body: "See the preview of your application right where you need it the most – close to your codebase. \n\nRadon IDE runs IOS Simulator and Android emulator directly in your Visual Studio Code and Cursor project.",
mediaSrc: "video/1_sztudio_integrated.mp4",
+ placeholderSrc: "video/placeholders/1_sztudio_integrated_placeholder.webp",
},
{
label: "Element Inspector",
title: "Click to inspect",
body: "Using the built-in inspector you can jump directly from preview to a file where your component is defined. It can't really get simpler than that.",
mediaSrc: "video/2_sztudio_inspect.mp4",
+ placeholderSrc: "video/placeholders/2_sztudio_inspect_placeholder.webp",
},
{
label: "Debugger",
title: "Use breakpoints right in VSCode",
body: "Without any additional setup the extension allows to add a breakpoints in Visual Studio Code to debug your React Native application. It. Just. Works.\n\nIDE also automatically stops at runtime exceptions showing you the exact line of code where they happened.",
mediaSrc: "video/3_sztudio_debugger.mp4",
+ placeholderSrc: "video/placeholders/3_sztudio_debugger_placeholder.webp",
},
{
label: "Router integration",
title: "Navigation made easier",
body: "The Radon IDE integrates tightly with your deep-linked application allowing you to jump around the navigation structure (supports both React Navigation and Expo Router projects).",
mediaSrc: "video/4_sztudio_url_bar.mp4",
+ placeholderSrc: "video/placeholders/4_sztudio_url_bar_placeholder.webp",
},
{
label: "Logs",
title: "Search through the logs easily",
body: "Radon IDE uses the built-in VSCode console allowing you to filter through the logs.\n\nThe links displayed in the console are automatically linking back to your source code.",
mediaSrc: "video/5_sztudio_logs_panel.mp4",
+ placeholderSrc: "video/placeholders/5_sztudio_logs_panel_placeholder.webp",
},
{
label: "Previews",
title: "Develop components in isolation",
body: "Radon IDE comes with a package allowing to preview components in full isolation.\n\nDevelop your components individually without distractions.",
mediaSrc: "video/6_sztudio_preview.mp4",
+ placeholderSrc: "video/placeholders/6_sztudio_preview_placeholder.webp",
},
{
label: "Device settings",
title: "Adjust device settings on the fly",
body: "You can adjust text size and light/dark mode right from the Radon IDE.\n\nFocus just on your app without switching between windows.",
mediaSrc: "video/7_sztudio_device_settings.mp4",
+ placeholderSrc: "video/placeholders/7_sztudio_device_settings_placeholder.webp",
},
{
label: "Screen recording",
title: "Instant replays",
body: "Missed a bug? At any time you can re-watch what just happened on the device.\n\nNo need to manually start the recording ever again.",
mediaSrc: "video/ide_screen_recording.mp4",
+ placeholderSrc: "video/placeholders/ide_screen_recording_placeholder.webp",
},
];
@@ -62,7 +70,7 @@ const Overview = () => {