Skip to content

Commit d6d3a77

Browse files
committed
Add name
1 parent 21ab902 commit d6d3a77

1 file changed

Lines changed: 21 additions & 1 deletion

File tree

src/frontend/src/pages/CreditsPage/CreditsPage.tsx

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,27 @@ const CreditsPage: React.FC = () => {
314314
}
315315
}
316316
},
317-
{ name: 'Santiago Ordonez Merizalde', color: '#8a2affff' },
317+
{
318+
name: 'Santiago Ordonez Merizalde',
319+
color: 'transparent',
320+
sx: {
321+
textShadow: `
322+
0 0 8px rgba(180, 0, 255, 0.8),
323+
0 0 15px rgba(140, 0, 255, 0.6),
324+
0 0 25px rgba(200, 100, 255, 0.5)
325+
`,
326+
background: 'linear-gradient(90deg, #d9a7ff, #b58eff, #7f6fff, #b58eff, #d9a7ff)',
327+
'-webkit-background-clip': 'text',
328+
backgroundSize: '300% 300%',
329+
animation: 'purpleFlow 6s ease-in-out infinite',
330+
'@keyframes purpleFlow': {
331+
'0%': { backgroundPosition: '0% 50%' },
332+
'50%': { backgroundPosition: '100% 50%' },
333+
'100%': { backgroundPosition: '0% 50%' }
334+
},
335+
filter: 'drop-shadow(0 0 4px rgba(190, 80, 255, 0.6))'
336+
}
337+
}
318338
];
319339

320340
const snark = ['Add your name!', "Shouldn't you do it yourself?", 'Seriously', 'go', 'do', 'it'];

0 commit comments

Comments
 (0)