@@ -32,7 +32,12 @@ export default function ExploreProjectsPage() {
3232 < div className = "relative" >
3333 < div className = "absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none" >
3434 < svg className = "h-5 w-5 text-gray-400" fill = "none" stroke = "currentColor" viewBox = "0 0 24 24" >
35- < path strokeLinecap = "round" strokeLinejoin = "round" strokeWidth = { 2 } d = "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" />
35+ < path
36+ strokeLinecap = "round"
37+ strokeLinejoin = "round"
38+ strokeWidth = { 2 }
39+ d = "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"
40+ />
3641 </ svg >
3742 </ div >
3843 < input
@@ -58,7 +63,11 @@ export default function ExploreProjectsPage() {
5863 < div className = "relative p-6" >
5964 < div className = "w-12 h-12 bg-gradient-to-br from-blue-500 to-purple-600 rounded-xl flex items-center justify-center mb-4 group-hover:scale-110 transition-transform duration-300 overflow-hidden" >
6065 { project . avatar ?. [ 0 ] ?. url ? (
61- < GraphImage src = { project . avatar [ 0 ] . url } alt = { `${ project . name } avatar` } className = "w-full h-full object-cover" />
66+ < GraphImage
67+ src = { project . avatar [ 0 ] . url }
68+ alt = { `${ project . name } avatar` }
69+ className = "w-full h-full object-cover"
70+ />
6271 ) : (
6372 < span className = "text-white font-bold text-lg" > { project . name . charAt ( 0 ) . toUpperCase ( ) } </ span >
6473 ) }
@@ -96,7 +105,12 @@ export default function ExploreProjectsPage() {
96105 < div className = "text-center py-16" >
97106 < div className = "w-24 h-24 bg-gradient-to-br from-blue-100 to-purple-100 rounded-full flex items-center justify-center mx-auto mb-6" >
98107 < svg className = "w-12 h-12 text-blue-400" fill = "none" stroke = "currentColor" viewBox = "0 0 24 24" >
99- < path strokeLinecap = "round" strokeLinejoin = "round" strokeWidth = { 2 } d = "M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10" />
108+ < path
109+ strokeLinecap = "round"
110+ strokeLinejoin = "round"
111+ strokeWidth = { 2 }
112+ d = "M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"
113+ />
100114 </ svg >
101115 </ div >
102116 < h3 className = "text-xl font-semibold text-gray-900 mb-2" > No Projects Found</ h3 >
@@ -106,5 +120,3 @@ export default function ExploreProjectsPage() {
106120 </ >
107121 ) ;
108122}
109-
110-
0 commit comments