@@ -17,19 +17,12 @@ const ProjectsGrid = () => {
17
17
18
18
return (
19
19
< section className = "py-5 sm:py-10 mt-5 sm:mt-10" >
20
- { /* Projects grid title start */ }
21
20
< div className = "text-center" >
22
21
< p className = "font-general-medium text-2xl sm:text-4xl mb-1 text-ternary-dark dark:text-ternary-light" >
23
22
Projects portfolio
24
23
</ p >
25
- { /* Note: This description is commented, but if you want to have it, just uncomment it */ }
26
- { /* <p className="text-md sm:text-xl text-gray-500 dark:text-ternary-light">
27
- Some of my projects are listed below
28
- </p> */ }
29
24
</ div >
30
- { /* Projects grid title end */ }
31
25
32
- { /* Filter and search projects start */ }
33
26
< div className = "mt-10 sm:mt-16" >
34
27
< h3
35
28
className = "font-general-regular
@@ -95,15 +88,11 @@ const ProjectsGrid = () => {
95
88
aria-label = "Name"
96
89
/>
97
90
</ div >
98
- { /* <ProjectsFilter @change="selectedProject = $event" /> */ }
99
91
100
92
< ProjectsFilter setSelectProject = { setSelectProject } />
101
- { /* <p>Filter projects</p> */ }
102
93
</ div >
103
94
</ div >
104
- { /* Filter and search projects end */ }
105
95
106
- { /* Projects grid start */ }
107
96
< div className = "grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 mt-6 sm:gap-10" >
108
97
{ selectProject
109
98
? selectProjectsByCategory . map ( ( project ) => (
@@ -132,7 +121,6 @@ const ProjectsGrid = () => {
132
121
/>
133
122
) ) }
134
123
</ div >
135
- { /* Projects grid end */ }
136
124
</ section >
137
125
) ;
138
126
} ;
0 commit comments