Skip to content
This repository was archived by the owner on Oct 24, 2023. It is now read-only.

Commit 3f50d25

Browse files
chore: lint
1 parent 44beb82 commit 3f50d25

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"@nuxtjs/google-analytics": "^2.2.0",
1818
"@nuxtjs/netlify-files": "^1.0.0",
1919
"@nuxtjs/pwa": "^3.0.0-beta.16",
20+
"@nuxtjs/sitemap": "^1.2.0",
2021
"eslint-plugin-nuxt": "^0.4.3",
2122
"intersection-observer": "^0.7.0",
2223
"nuxt-edge": "^3.0.0-25886174.42eefa0e",

pages/index.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@
6969
</p>
7070
<div class="lg:flex justify-center items-center my-16">
7171
<ExpertiseCategory
72-
:is-first="!index"
72+
v-for="(expertise, index) in $t('index.expertises.content')"
7373
:key="index"
74+
:is-first="!index"
7475
:list-items="expertise.listItems"
7576
:title="expertise.title"
76-
v-for="(expertise, index) in $t('index.expertises.content')"
7777
/>
7878
</div>
7979
<p
@@ -88,11 +88,11 @@
8888
<Transition name="slide-fade">
8989
<div class="lg:flex flex-row justify-around lg:my-8 md:p-4">
9090
<InformationIcon
91+
v-for="(data,index) in $t('index.informationIcons')"
92+
:key="index"
9193
:class="{'opacity-0': !showIcons}"
9294
:content="data.content"
93-
:key="index"
9495
:title="data.title"
95-
v-for="(data,index) in $t('index.informationIcons')"
9696
>
9797
<Component
9898
:is="data.img"

0 commit comments

Comments
 (0)