@@ -87,7 +87,7 @@ const fetchGitHubData = async (endpoint: string): Promise<any> => {
8787// ===== SKELETON =====
8888const ProjectCardSkeleton = memo ( ( ) => (
8989 < div className = "bg-gray-900/50 border border-gray-700/50 rounded-xl overflow-hidden h-[320px] animate-pulse" >
90- < div className = "h-48 bg-gradient -to-r from-gray-700/20 to-gray-700/10" />
90+ < div className = "h-48 bg-linear -to-r from-gray-700/20 to-gray-700/10" />
9191 < div className = "p-4 space-y-3" >
9292 < div className = "h-6 bg-gray-700/50 rounded w-3/4" />
9393 < div className = "h-4 bg-gray-700/50 rounded w-full" />
@@ -138,10 +138,10 @@ const CustomProjectCard = memo(({ project }: { project: CustomProject }) => {
138138 quality = { 75 }
139139 />
140140
141- < div className = "absolute inset-0 bg-gradient -to-t from-black/70 via-transparent to-transparent" />
141+ < div className = "absolute inset-0 bg-linear -to-t from-black/70 via-transparent to-transparent" />
142142
143143 { project . featured && (
144- < div className = "absolute top-2 right-2 bg-gradient -to-r from-pink-500 to-purple-500 px-2 py-1 rounded-full text-xs text-white font-medium" >
144+ < div className = "absolute top-2 right-2 bg-linear -to-r from-pink-500 to-purple-500 px-2 py-1 rounded-full text-xs text-white font-medium" >
145145 < Star size = { 10 } className = "inline mr-1" />
146146 Featured
147147 </ div >
@@ -165,12 +165,12 @@ const CustomProjectCard = memo(({ project }: { project: CustomProject }) => {
165165 </ div >
166166 </ div >
167167
168- < div className = "p-4 flex flex-col flex- grow" >
168+ < div className = "p-4 flex flex-col grow" >
169169 < h3 className = "text-lg font-bold mb-2 text-cyan-400 line-clamp-1" >
170170 { project . name }
171171 </ h3 >
172172
173- < p className = "text-gray-300 mb-4 text-sm line-clamp-2 flex- grow" >
173+ < p className = "text-gray-300 mb-4 text-sm line-clamp-2 grow" >
174174 { project . description }
175175 </ p >
176176
@@ -220,7 +220,7 @@ const GitHubProjectCard = memo(({ project }: { project: GitHubRepo }) => {
220220 quality = { 75 }
221221 />
222222
223- < div className = "absolute inset-0 bg-gradient -to-t from-black/70 via-transparent to-transparent" />
223+ < div className = "absolute inset-0 bg-linear -to-t from-black/70 via-transparent to-transparent" />
224224
225225 { project . language && (
226226 < div className = "absolute top-2 left-2 bg-black/60 px-2 py-1 rounded-full text-xs text-white" >
@@ -241,12 +241,12 @@ const GitHubProjectCard = memo(({ project }: { project: GitHubRepo }) => {
241241 </ div >
242242 </ div >
243243
244- < div className = "p-4 flex flex-col flex- grow" >
244+ < div className = "p-4 flex flex-col grow" >
245245 < h3 className = "text-lg font-bold mb-2 text-cyan-400 line-clamp-1" >
246246 { project . name }
247247 </ h3 >
248248
249- < p className = "text-gray-300 mb-3 text-sm line-clamp-2 flex- grow" >
249+ < p className = "text-gray-300 mb-3 text-sm line-clamp-2 grow" >
250250 { project . description || "No description available" }
251251 </ p >
252252
@@ -366,7 +366,7 @@ const Projects = () => {
366366 return (
367367 < section id = "projects" className = "py-16 w-full" >
368368 < div className = "container mx-auto px-4" >
369- < h2 className = "text-3xl font-bold mb-8 text-center bg-gradient -to-r from-cyan-400 to-blue-500 bg-clip-text text-transparent" >
369+ < h2 className = "text-3xl font-bold mb-8 text-center bg-linear -to-r from-cyan-400 to-blue-500 bg-clip-text text-transparent" >
370370 Projects
371371 </ h2 >
372372 < div className = "text-center text-red-400 bg-red-900/20 border border-red-500/20 p-6 rounded-lg" >
@@ -392,7 +392,7 @@ const Projects = () => {
392392 } `}
393393 >
394394 < div className = "container mx-auto px-4" >
395- < h2 className = "text-3xl font-bold mb-4 text-center bg-gradient -to-r from-cyan-400 to-blue-500 bg-clip-text text-transparent" >
395+ < h2 className = "text-3xl font-bold mb-4 text-center bg-linear -to-r from-cyan-400 to-blue-500 bg-clip-text text-transparent" >
396396 Projects
397397 </ h2 >
398398 < p className = "text-gray-400 text-center mb-8 max-w-2xl mx-auto" >
0 commit comments