Skip to content

Commit

Permalink
Fix the path of images
Browse files Browse the repository at this point in the history
  • Loading branch information
ngumokenneth committed Oct 25, 2023
1 parent 3a8641f commit 14b598a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions challenges/order_summary_component/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
class="mx-auto flex w-[330px] flex-col items-center overflow-hidden rounded-2xl bg-white lg:w-[380px]"
>
<div>
<img src="images/illustration-hero.svg" alt="hero illustration" />
<img src="/images/illustration-hero.svg" alt="hero illustration" />
</div>
<div class="mx-3">
<div class="p-4">
Expand All @@ -51,7 +51,7 @@ <h1 class="text-dark-blue text-xl font-bold">Order Summary</h1>
<div
class="bg-very-pale-blue mx-5 flex items-center rounded-lg py-1"
>
<img src="images/icon-music.svg" alt="music icon" />
<img src="/images/icon-music.svg" alt="music icon" />
<div class="relative flex items-center px-4">
<h2 class="text-dark-blue text-sm font-bold">
Annual Plan
Expand Down Expand Up @@ -109,12 +109,12 @@ <h2 class="text-dark-blue text-sm font-bold">
</div>
</div>
<img
src="images/pattern-background-mobile.svg"
src="/images/pattern-background-mobile.svg"
alt="background pattern"
class="lg:hidden"
/>
<img
src="images/pattern-background-desktop.svg"
src="/images/pattern-background-desktop.svg"
alt="background-pattern"
class="relative hidden lg:block"
/>
Expand Down

0 comments on commit 14b598a

Please sign in to comment.