File tree Expand file tree Collapse file tree 5 files changed +19
-19
lines changed
Expand file tree Collapse file tree 5 files changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -24,17 +24,17 @@ export default {
2424 {
2525 id: 1 ,
2626 title: ' Kabul Project Management UI' ,
27- img: require (' ../.. /assets/images/ui-project-1.jpg' ),
27+ img: require (' @ /assets/images/ui-project-1.jpg' ),
2828 },
2929 {
3030 id: 2 ,
3131 title: ' Kabul Project Management UI' ,
32- img: require (' ../.. /assets/images/web-project-2.jpg' ),
32+ img: require (' @ /assets/images/web-project-2.jpg' ),
3333 },
3434 {
3535 id: 3 ,
3636 title: ' Kabul Project Management UI' ,
37- img: require (' ../.. /assets/images/mobile-project-2.jpg' ),
37+ img: require (' @ /assets/images/mobile-project-2.jpg' ),
3838 },
3939 ],
4040 };
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1212 <div class =" grid grid-cols-1 sm:grid-cols-4 gap-10" >
1313 <div >
1414 <img
15- src =" ../.. /assets/images/mobile-project-1.jpg"
15+ src =" @ /assets/images/mobile-project-1.jpg"
1616 class =" rounded-2xl cursor-pointer"
1717 alt =" Related Project"
1818 />
1919 </div >
2020 <div >
2121 <img
22- src =" ../.. /assets/images/web-project-1.jpg"
22+ src =" @ /assets/images/web-project-1.jpg"
2323 class =" rounded-2xl cursor-pointer"
2424 alt =" Related Project"
2525 />
2626 </div >
2727 <div >
2828 <img
29- src =" ../.. /assets/images/ui-project-2.jpg"
29+ src =" @ /assets/images/ui-project-2.jpg"
3030 class =" rounded-2xl cursor-pointer"
3131 alt =" Related Project"
3232 />
3333 </div >
3434 <div >
3535 <img
36- src =" ../.. /assets/images/mobile-project-1.jpg"
36+ src =" @ /assets/images/mobile-project-1.jpg"
3737 class =" rounded-2xl cursor-pointer"
3838 alt =" Related Project"
3939 />
Original file line number Diff line number Diff line change 11<template >
22 <div class =" container mx-auto mt-10 sm:mt-20" >
33 <!-- Project header -->
4- <SingleProjectHeader />
4+ <ProjectSingleHeader />
55
66 <!-- Project gallery -->
7- <SingleProjectGallery />
7+ <ProjectSingleGallery />
88
99 <!-- Project information -->
10- <SingleProjectInfo />
10+ <ProjectSingleInfo />
1111
1212 <!-- Project related projects -->
13- <SingleProjectRelatedProjects />
13+ <ProjectSingleRelatedProjects />
1414 </div >
1515</template >
1616
1717<script >
18- import SingleProjectHeader from ' @/components/project/SingleProjectHeader' ;
19- import SingleProjectGallery from ' @/components/project/SingleProjectGallery' ;
20- import SingleProjectInfo from ' @/components/project/SingleProjectInfo' ;
21- import SingleProjectRelatedProjects from ' @/components/project/SingleProjectRelatedProjects' ;
2218import feather from ' feather-icons' ;
19+ import ProjectSingleHeader from ' ../components/ProjectSingleHeader.vue' ;
20+ import ProjectSingleGallery from ' ../components/ProjectSingleGallery.vue' ;
21+ import ProjectSingleInfo from ' ../components/ProjectSingleInfo.vue' ;
22+ import ProjectSingleRelatedProjects from ' ../components/ProjectSingleRelatedProjects.vue' ;
2323
2424export default {
2525 name: ' Projects' ,
2626 components: {
27- SingleProjectHeader ,
28- SingleProjectGallery ,
29- SingleProjectInfo ,
30- SingleProjectRelatedProjects ,
27+ ProjectSingleHeader ,
28+ ProjectSingleGallery ,
29+ ProjectSingleInfo ,
30+ ProjectSingleRelatedProjects ,
3131 },
3232 data : () => {
3333 return {};
You can’t perform that action at this time.
0 commit comments