@@ -17,19 +17,12 @@ const ProjectsGrid = () => {
1717
1818 return (
1919 < section className = "py-5 sm:py-10 mt-5 sm:mt-10" >
20- { /* Projects grid title start */ }
2120 < div className = "text-center" >
2221 < p className = "font-general-medium text-2xl sm:text-4xl mb-1 text-ternary-dark dark:text-ternary-light" >
2322 Projects portfolio
2423 </ 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> */ }
2924 </ div >
30- { /* Projects grid title end */ }
3125
32- { /* Filter and search projects start */ }
3326 < div className = "mt-10 sm:mt-16" >
3427 < h3
3528 className = "font-general-regular
@@ -95,15 +88,11 @@ const ProjectsGrid = () => {
9588 aria-label = "Name"
9689 />
9790 </ div >
98- { /* <ProjectsFilter @change="selectedProject = $event" /> */ }
9991
10092 < ProjectsFilter setSelectProject = { setSelectProject } />
101- { /* <p>Filter projects</p> */ }
10293 </ div >
10394 </ div >
104- { /* Filter and search projects end */ }
10595
106- { /* Projects grid start */ }
10796 < div className = "grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 mt-6 sm:gap-10" >
10897 { selectProject
10998 ? selectProjectsByCategory . map ( ( project ) => (
@@ -132,7 +121,6 @@ const ProjectsGrid = () => {
132121 />
133122 ) ) }
134123 </ div >
135- { /* Projects grid end */ }
136124 </ section >
137125 ) ;
138126} ;
0 commit comments