Skip to content

Commit c893e55

Browse files
committed
fix: image location for tuto
1 parent 6e39119 commit c893e55

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

src/Iframes/TutorialV1/Tuto/Components/Steps/Step1.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
</div>
1919
<div class="description tw-p-3 tw-mb-16 tw-text-left tw-text-white tw-pb-20 tw-flex tw-row tw-w-full tw-items-center tw-justify-center tw-py-10">
2020
<div class="tw-flex tw-flex-col tw-items-center tw-justify-center tw-p-10">
21-
<img src="/resources/images/tutov1/step1/keyboard.svg" alt="keyboard" class="tw-w-40 tw-h-auto">
21+
<img src="resources/images/tutov1/step1/keyboard.svg" alt="keyboard" class="tw-w-40 tw-h-auto">
2222
<p class="tw-text-xl tw-text-center tw-p-5 tw-font-bold">Control your Woka by using the arrow keys</p>
2323
</div>
2424
<div class="tw-flex tw-flex-col tw-items-center tw-justify-center tw-p-10">
25-
<img src="/resources/images/tutov1/step1/mouse.svg" alt="mouse" class="tw-w-40 tw-h-auto">
25+
<img src="resources/images/tutov1/step1/mouse.svg" alt="mouse" class="tw-w-40 tw-h-auto">
2626
<p class="tw-text-xl tw-text-center tw-p-5 tw-font-bold">Control your Woka by right-clicking anywhere on the map.</p>
2727
</div>
2828
</div>

src/Iframes/TutorialV1/Tuto/Components/Steps/Step2.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</div>
1919
<div class="description tw-p-3 tw-mb-16 tw-text-left tw-text-white tw-pb-20 tw-flex tw-row tw-w-full tw-items-center tw-justify-center tw-py-10">
2020
<div class="tw-flex tw-flex-col tw-items-center tw-justify-center tw-p-10">
21-
<img src="/resources/images/tutov1/step2/woka-meet.png" alt="Meet in" class="tw-w-56 tw-h-auto">
21+
<img src="resources/images/tutov1/step2/woka-meet.png" alt="Meet in" class="tw-w-56 tw-h-auto">
2222
<p class="tw-text-xl tw-text-center tw-p-5 tw-font-bold">Approach another Woka and start interacting</p>
2323
</div>
2424
</div>

src/Iframes/TutorialV1/Tuto/Components/Steps/Step3.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</div>
1818
<div class="description tw-p-3 tw-mb-16 tw-text-left tw-text-white tw-pb-20 tw-flex tw-row tw-w-full tw-items-center tw-justify-center tw-py-10">
1919
<div class="tw-flex tw-flex-col tw-items-center tw-justify-center tw-p-10">
20-
<img src="/resources/images/tutov1/step3/woka-action.png" alt="Meet in" class="tw-w-64 tw-h-auto">
20+
<img src="resources/images/tutov1/step3/woka-action.png" alt="Meet in" class="tw-w-64 tw-h-auto">
2121
<p class="tw-text-xl tw-text-center tw-p-5 tw-font-bold">Approach another Woka and start interacting</p>
2222
</div>
2323
</div>

src/Iframes/TutorialV1/Tuto/Store/StepStore.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { writable } from "svelte/store";
22

3-
/*const step1Onboarding = "/dist/resources/images/tutov1/step1-onboarding.png";
4-
const step2Onboarding = "/dist/resources/images/tutov1/step2-onboarding.png";
5-
const step3Onboarding = "/dist/resources/images/tutov1/step3-onboarding.png";
6-
const step4Onboarding = "/dist/resources/images/tutov1/step4-onboarding.png";
7-
const step5Onboarding = "/dist/resources/images/tutov1/step5-onboarding.png";
8-
const step6Onboarding = "/dist/resources/images/tutov1/step6-onboarding.png";*/
3+
/*const step1Onboarding = "resources/images/tutov1/step1-onboarding.png";
4+
const step2Onboarding = "resources/images/tutov1/step2-onboarding.png";
5+
const step3Onboarding = "resources/images/tutov1/step3-onboarding.png";
6+
const step4Onboarding = "resources/images/tutov1/step4-onboarding.png";
7+
const step5Onboarding = "resources/images/tutov1/step5-onboarding.png";
8+
const step6Onboarding = "resources/images/tutov1/step6-onboarding.png";*/
99

1010
/*const step1Onboarding =
1111
"https://workadventure-chat-uploads.s3.eu-west-1.amazonaws.com/upload/video/step1-onboarding.png";

0 commit comments

Comments
 (0)