+
+
-
);
diff --git a/src/pages/features.tsx b/src/pages/features.tsx
index e392ad1c4b..5adbccfd12 100644
--- a/src/pages/features.tsx
+++ b/src/pages/features.tsx
@@ -9,7 +9,7 @@ import ColoringBookSection from '@site/src/components/content/ColoringBookSectio
import FeaturesCarousel from '@site/src/components/content/FeaturesCarousel';
import BlogArticlesList from '@site/src/components/content/BlogArticlesList';
/* PAGE DATA */
-import { header, knowPodman, learnMore } from '@site/static/data/features';
+import { header, knowPodman, podmanDesktop, learnMore } from '@site/static/data/features';
import PlayOnScroll from '@site/src/components/utilities/PlayOnScroll';
import BasicResourcesBox from '@site/src/components/content/BasicResourcesBox';
@@ -18,15 +18,19 @@ function GetToKnowPodmanSection() {
return (
-
+
{knowPodman.cards.map((card, index) => {
return (
-
-
-
{card.title}
-
-
-
+
+
+ {card.title}
+
);
})}
@@ -37,24 +41,22 @@ function GetToKnowPodmanSection() {
const PodmanDesktopSection = () => {
return (
-
-
-
-
-

-
-
-
- Podman Desktop is Podman's graphical application that makes it easy to install and work with Podman (and
- other container engines) on Windows, MacOS, and Linux.
-
-
+
);
@@ -195,7 +197,7 @@ const LearnMoreSection = () => {
function Features() {
return (
-
+
diff --git a/static/data/features.ts b/static/data/features.ts
index 06633d7eb0..ca43ae4544 100644
--- a/static/data/features.ts
+++ b/static/data/features.ts
@@ -41,6 +41,16 @@ const knowPodman = {
],
};
+const podmanDesktop = {
+ title: 'Podman Desktop',
+ description:
+ 'is Podman\'s graphical application that makes it easy to install and work with Podman (and other container engines) on Windows, MacOS, and Linux.',
+ image: {
+ path: 'logos/optimized/podman-desktop-logo-200w-198h.webp',
+ alt: 'Podman Desktop logo',
+ },
+};
+
const carouselContent = [
{
title: 'Find',
@@ -113,4 +123,4 @@ const learnMore = {
},
};
-export { header, knowPodman, carouselContent, learnMore };
+export { header, knowPodman, podmanDesktop, carouselContent, learnMore };