Skip to content

Commit

Permalink
feat(front): update images
Browse files Browse the repository at this point in the history
  • Loading branch information
1Mateus committed Jan 12, 2024
1 parent bacf5a2 commit d4d6353
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions front/components/Auth/steps/Connect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const emits = defineEmits(['changeStep'])
<div class="lg:hidden">
<figure class="flex justify-center items-center">
<img
src="/auth-bg.png"
src="/images/auth/hero.webp"
alt="Hero illustration"
quality="100"
class="min-w-[608px] max-w-[608px]"
Expand Down Expand Up @@ -66,7 +66,7 @@ const emits = defineEmits(['changeStep'])
"
>
<img
src="/auth-bg.png"
src="/images/auth/hero.webp"
alt="Hero illustration"
quality="100"
class="
Expand Down
2 changes: 1 addition & 1 deletion front/components/Home/Widget/History.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const router = useRouter()
<div>
<img
class="w-[120px]"
src="/empty-receipts.png"
src="/images/empty/receipts.png"
/>
</div>
Expand Down
4 changes: 2 additions & 2 deletions front/components/Home/Widget/Tokens.vue
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ const balance = computed(() => {
>
<div>
<img
src="/empty-tokens.png"
src="/images/empty/tokens.png"
class="w-[218px]"
/>
</div>
Expand Down Expand Up @@ -230,7 +230,7 @@ const balance = computed(() => {
>
<div>
<img
src="/empty-tokens.png"
src="/images/empty/tokens.png"
class="w-[218px]"
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion front/components/Invoice/NFT/steps/Success.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const router = useRouter()
<div
class="mx-auto"
>
<img src="/success.png" class="w-[100px]" />
<img src="/images/feedback/success.png" class="w-[100px]" />
</div>

<div class="mx-auto flex flex-col gap-3">
Expand Down
2 changes: 1 addition & 1 deletion front/components/Invoice/Token/steps/Success.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const router = useRouter()
<div
class="mx-auto"
>
<img src="/success.png" class="w-[100px]" />
<img src="/images/feedback/success.png" class="w-[100px]" />
</div>

<div class="mx-auto flex flex-col gap-3">
Expand Down
2 changes: 1 addition & 1 deletion front/components/UI/Modal/OwnNFT.vue
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ watch(
"
>
<div>
<img src="/empty-tokens.png" class="w-[218px]" />
<img src="/images/empty/tokens.png" class="w-[218px]" />
</div>

<span class="text-font-2 text-[18px] font-[600]">
Expand Down
2 changes: 1 addition & 1 deletion front/components/layout/MobileTopbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</div>

<div class="relative z-[1]">
<img src="/logo.png"/>
<img src="/images/logo.png"/>
</div>

<div class="relative z-[1]">
Expand Down
2 changes: 1 addition & 1 deletion front/components/layout/Topbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const titles = {
>
<img
lazy
src="/bg-app.png"
src="/images/nav-bg.png"
class="w-full w-full max-h-[319px]"
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion front/layouts/auth.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const data = reactive({
lg:block
"
>
<img src="/bg-app.png" class="w-full h-[520px]" />
<img src="/images/nav-bg.png" class="w-full h-[520px]" />
</div>

<div
Expand Down
2 changes: 1 addition & 1 deletion front/layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const router = useRouter()
select-none
"
>
<img src="/bg-app.png" class="w-full w-full" />
<img src="/images/nav-bg.png" class="w-full w-full" />
</div>

<div
Expand Down
2 changes: 1 addition & 1 deletion front/pages/history.vue
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ const receipts = computed(() => {
<div>
<img
class="min-w-[284px]"
src="/empty-receipts.png"
src="/images/empty/receipts.png"
/>
</div>
Expand Down

0 comments on commit d4d6353

Please sign in to comment.