Skip to content

Commit 92d4f53

Browse files
committed
Show projects
1 parent eb87b94 commit 92d4f53

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

src/components/ProjectsGrid.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { FiSearch } from 'react-icons/fi';
2-
import { Projects } from '../utils/ProjectsData';
2+
import { ProjectsData } from '../utils/ProjectsData';
33
import ProjectsFilter from './ProjectsFilter';
44
import ProjectSingle from './ProjectSingle';
55

@@ -96,7 +96,7 @@ const ProjectsGrid = () => {
9696
:key="project.id"
9797
:project="project"
9898
/> */}
99-
{Projects.map((project) => (
99+
{ProjectsData.map((project) => (
100100
<ProjectSingle
101101
title={project.title}
102102
category={project.category}

src/utils/ProjectsData.js

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import MobileImage2 from '../images/mobile-project-2.jpg';
55
import UIImage1 from '../images/ui-project-1.jpg';
66
import UIImage2 from '../images/ui-project-2.jpg';
77

8-
export const Projects = [
8+
export const ProjectsData = [
99
{
1010
id: 1,
1111
title: 'Google Health Platform',
@@ -43,10 +43,3 @@ export const Projects = [
4343
img: WebImage1,
4444
},
4545
];
46-
47-
export const ProjectsData = {
48-
projectsHeading: 'Projects Portfolio',
49-
projectsDescription: 'Some of the projects I have successfully completed',
50-
selectedProject: '',
51-
searchProject: '',
52-
};

0 commit comments

Comments
 (0)