Skip to content

Commit 7f1bf4d

Browse files
committed
Cleanup code
1 parent 2a17060 commit 7f1bf4d

File tree

2 files changed

+6
-14
lines changed

2 files changed

+6
-14
lines changed

web/components/FixedHeader.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<v-container>
44
<v-row>
55
<v-col class="w-full d-flex">
6-
<router-link
6+
<nuxt-link
77
:to="{ name: 'index' }"
88
class="text--primary text-h4 text-decoration-none"
99
:class="{
@@ -15,7 +15,7 @@
1515
<v-img contain :src="require('@/assets/img/logo.svg')"></v-img>
1616
</v-avatar>
1717
HTTP SMS
18-
</router-link>
18+
</nuxt-link>
1919
<v-spacer></v-spacer>
2020
<v-btn
2121
exact-path

web/pages/index.vue

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -158,30 +158,22 @@
158158
<v-col cols="12" md="5" class="pr-4">
159159
<v-timeline dense class="mt-10 ml-n4">
160160
<v-timeline-item color="primary" :icon="mdiTallyMark1">
161-
<v-card
162-
class="elevation-2"
163-
@mouseover="step1Hover = true"
164-
@mouseleave="step1Hover = false"
165-
>
161+
<v-card class="elevation-2">
166162
<v-card-title class="text-h5"> Step 1 </v-card-title>
167163
<v-card-text class="subtitle-1">
168-
<router-link
164+
<NuxtLink
169165
class="font-weight-bold text-decoration-none"
170166
:to="{ name: 'login' }"
171167
>
172168
Create an account
173-
</router-link>
169+
</NuxtLink>
174170
on httpsms.com and obtain you API key on the settings
175171
page.
176172
</v-card-text>
177173
</v-card>
178174
</v-timeline-item>
179175
<v-timeline-item color="primary" :icon="mdiTallyMark2">
180-
<v-card
181-
class="elevation-2"
182-
@mouseover="step2Hover = true"
183-
@mouseleave="step2Hover = false"
184-
>
176+
<v-card class="elevation-2">
185177
<v-card-title class="text-h5"> Step 2 </v-card-title>
186178
<v-card-text class="subtitle-1">
187179
<a

0 commit comments

Comments
 (0)