Skip to content

Commit d7d6f94

Browse files
committed
Components bp for about components
1 parent ca3f310 commit d7d6f94

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

src/components/about/Clients.vue renamed to src/components/AboutClients.vue

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,56 +8,56 @@
88
<div class="grid grid-cols-2 sm:grid-cols-4 mt-10 sm:mt-20 gap-2">
99
<div>
1010
<img
11-
src="../../assets/images/brands/amazon_gray.png"
11+
src="@/assets/images/brands/amazon_gray.png"
1212
alt="Amazon"
1313
class="w-64 py-5 px-10 border border-ternary-light dark:border-ternary-dark shadow-sm rounded-xl mb-8 cursor-pointer"
1414
/>
1515
</div>
1616
<div>
1717
<img
18-
src="../../assets/images/brands/sony_gray.png"
18+
src="@/assets/images/brands/sony_gray.png"
1919
alt="SONY"
2020
class="w-64 py-5 px-10 border border-ternary-light dark:border-ternary-dark shadow-sm rounded-xl mb-8 cursor-pointer"
2121
/>
2222
</div>
2323
<div>
2424
<img
25-
src="../../assets/images/brands/adidas_gray.png"
25+
src="@/assets/images/brands/adidas_gray.png"
2626
alt="Adidas"
2727
class="w-64 py-5 px-10 border border-ternary-light dark:border-ternary-dark shadow-sm rounded-xl mb-8 cursor-pointer"
2828
/>
2929
</div>
3030
<div>
3131
<img
32-
src="../../assets/images/brands/fila_gray.png"
32+
src="@/assets/images/brands/fila_gray.png"
3333
alt="FILA"
3434
class="w-64 py-5 px-10 border border-ternary-light dark:border-ternary-dark shadow-sm rounded-xl mb-8 cursor-pointer"
3535
/>
3636
</div>
3737
<div>
3838
<img
39-
src="../../assets/images/brands/nb_gray.png"
39+
src="@/assets/images/brands/nb_gray.png"
4040
alt="NB"
4141
class="w-64 py-5 px-10 border border-ternary-light dark:border-ternary-dark shadow-sm rounded-xl mb-8 cursor-pointer"
4242
/>
4343
</div>
4444
<div>
4545
<img
46-
src="../../assets/images/brands/samsung_gray.png"
46+
src="@/assets/images/brands/samsung_gray.png"
4747
alt="Samsung"
4848
class="w-64 py-5 px-10 border border-ternary-light dark:border-ternary-dark shadow-sm rounded-xl mb-8 cursor-pointer"
4949
/>
5050
</div>
5151
<div>
5252
<img
53-
src="../../assets/images/brands/canon_gray.png"
53+
src="@/assets/images/brands/canon_gray.png"
5454
alt="Canon"
5555
class="w-64 py-5 px-10 border border-ternary-light dark:border-ternary-dark shadow-sm rounded-xl mb-8 cursor-pointer"
5656
/>
5757
</div>
5858
<div>
5959
<img
60-
src="../../assets/images/brands/puma_gray.png"
60+
src="@/assets/images/brands/puma_gray.png"
6161
alt="Puma"
6262
class="w-64 py-5 px-10 border border-ternary-light dark:border-ternary-dark shadow-sm rounded-xl mb-8 cursor-pointer"
6363
/>

src/components/about/AboutMe.vue renamed to src/components/AboutMe.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- About me portfolio image start -->
44
<div class="w-full sm:w-1/4 mb-7 sm:mb-0">
55
<img
6-
src="../../assets/images/profile.jpeg"
6+
src="@/assets/images/profile.jpeg"
77
class="rounded-xl w-96"
88
alt=""
99
/>

src/views/About.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,24 @@
1212

1313
<div class="container mx-auto">
1414
<!-- About counter start -->
15-
<Clients />
15+
<AboutClients />
1616
<!-- About counter end -->
1717
</div>
1818
</div>
1919
</template>
2020

2121
<script>
22-
import AboutMe from '@/components/about/AboutMe';
23-
import AboutCounter from '@/components/about/AboutCounter';
24-
import Clients from '@/components/about/Clients';
22+
import AboutMe from '@/components/AboutMe';
23+
import AboutCounter from '@/components/AboutCounter';
24+
import AboutClients from '@/components/AboutClients';
2525
import feather from 'feather-icons';
2626
2727
export default {
2828
name: 'About',
2929
components: {
3030
AboutMe,
3131
AboutCounter,
32-
Clients,
32+
AboutClients,
3333
},
3434
data: () => {
3535
return {};

0 commit comments

Comments
 (0)