File tree Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 1
1
import { FiSearch } from 'react-icons/fi' ;
2
- import { Projects } from '../utils/ProjectsData' ;
2
+ import { ProjectsData } from '../utils/ProjectsData' ;
3
3
import ProjectsFilter from './ProjectsFilter' ;
4
4
import ProjectSingle from './ProjectSingle' ;
5
5
@@ -96,7 +96,7 @@ const ProjectsGrid = () => {
96
96
:key="project.id"
97
97
:project="project"
98
98
/> */ }
99
- { Projects . map ( ( project ) => (
99
+ { ProjectsData . map ( ( project ) => (
100
100
< ProjectSingle
101
101
title = { project . title }
102
102
category = { project . category }
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import MobileImage2 from '../images/mobile-project-2.jpg';
5
5
import UIImage1 from '../images/ui-project-1.jpg' ;
6
6
import UIImage2 from '../images/ui-project-2.jpg' ;
7
7
8
- export const Projects = [
8
+ export const ProjectsData = [
9
9
{
10
10
id : 1 ,
11
11
title : 'Google Health Platform' ,
@@ -43,10 +43,3 @@ export const Projects = [
43
43
img : WebImage1 ,
44
44
} ,
45
45
] ;
46
-
47
- export const ProjectsData = {
48
- projectsHeading : 'Projects Portfolio' ,
49
- projectsDescription : 'Some of the projects I have successfully completed' ,
50
- selectedProject : '' ,
51
- searchProject : '' ,
52
- } ;
You can’t perform that action at this time.
0 commit comments