diff --git a/Desktop/public/images/step1.png b/Desktop/public/images/step1.png new file mode 100644 index 00000000..5b467911 Binary files /dev/null and b/Desktop/public/images/step1.png differ diff --git a/Desktop/public/images/step2.png b/Desktop/public/images/step2.png new file mode 100644 index 00000000..55c2487d Binary files /dev/null and b/Desktop/public/images/step2.png differ diff --git a/Desktop/public/images/step3.png b/Desktop/public/images/step3.png new file mode 100644 index 00000000..990a5936 Binary files /dev/null and b/Desktop/public/images/step3.png differ diff --git a/Desktop/public/images/step4.png b/Desktop/public/images/step4.png new file mode 100644 index 00000000..9d24583b Binary files /dev/null and b/Desktop/public/images/step4.png differ diff --git a/Desktop/public/images/step5.png b/Desktop/public/images/step5.png new file mode 100644 index 00000000..2825434c Binary files /dev/null and b/Desktop/public/images/step5.png differ diff --git a/Desktop/public/images/step6.png b/Desktop/public/images/step6.png new file mode 100644 index 00000000..f62fa082 Binary files /dev/null and b/Desktop/public/images/step6.png differ diff --git a/Desktop/public/images/step7.gif b/Desktop/public/images/step7.gif new file mode 100644 index 00000000..f38985d5 Binary files /dev/null and b/Desktop/public/images/step7.gif differ diff --git a/Desktop/src/components/InstallerGuide.svelte b/Desktop/src/components/InstallerGuide.svelte index 65d3cd4e..ffd3914f 100644 --- a/Desktop/src/components/InstallerGuide.svelte +++ b/Desktop/src/components/InstallerGuide.svelte @@ -4,14 +4,42 @@ let currentStep = 0; const steps = [ - "Step 1: Download the agent", - "Step 2: Open the installer", - "Step 3: Accept the license agreement", - "Step 4: Choose the installation directory", - "Step 5: Install the agent", - "Step 6: Wait for the installation to complete", - "Step 7: Finish and run the agent" - ]; + { + step: "Step 1", + context:"Download the agent" , + img: "./images/step1.png" + }, + { + step: "Step 2", + context:"Open the installer" , + img: "./images/step2.png" + }, + { + step: "Step 3", + context:"Choose your agent type" , + img: "./images/step3.png" + }, + { + step: "Step 4", + context:"Choose the installation directory" , + img: "./images/step4.png" + }, + { + step: "Step 5", + context:"Install the agent" , + img: "./images/step5.png" + }, + { + step: "Step 6", + context:"Wait for the installation to complete" , + img: "./images/step6.png" + }, + { + step: "Step 7", + context:"Finish and run the agent" , + img: "./images/HomeAnimation.gif" + } + ]; function next() { if (currentStep < steps.length - 1) { @@ -33,6 +61,10 @@ .slide { text-align: center; margin-top: 50px; + align-content: center; + justify-content: center; + justify-items: center; + align-items: center; } .controls { display: flex; @@ -40,7 +72,7 @@ margin-top: 20px; } .button { - padding: 10px 20px; + /* padding: 10px 20px; */ font-size: 16px; cursor: pointer; border-radius:15px; @@ -53,23 +85,26 @@