diff --git a/src/app/wizardview/components/WelcomePage.qml b/src/app/wizardview/components/WelcomePage.qml
index 0f3add50ed5ef3cfc6ad71838c1b37a8e1be6f06..b2524a3d03aa53b527144f5f2a338710529a6011 100644
--- a/src/app/wizardview/components/WelcomePage.qml
+++ b/src/app/wizardview/components/WelcomePage.qml
@@ -26,6 +26,7 @@ import net.jami.Adapters 1.1
 import net.jami.Constants 1.1
 
 import "../../commoncomponents"
+import "../../mainview/components"
 
 
 Rectangle {
@@ -71,6 +72,12 @@ Rectangle {
         anchors.topMargin: JamiTheme.wizardViewLayoutTopMargin
         width: Math.max(508, root.width - 100)
 
+        AboutPopUp {
+            id: aboutPopUpDialog
+
+            width: Math.min(parent.width - 2 * JamiTheme.preferredMarginSize, JamiTheme.secondaryDialogDimension)
+            height: Math.min(parent.height - 2 * JamiTheme.preferredMarginSize, JamiTheme.secondaryDialogDimension)
+        }
 
         ResponsiveImage {
             id: welcomeLogo