@@ -112,7 +112,7 @@ const FocusMode: React.FC = () => {
112
112
} ;
113
113
114
114
return (
115
- < div data-aos = "fade-up" data-aos-delay = "100" className = "p-6 mb-8 text-gray-900 bg-white rounded-2xl border border-gray-200 shadow-md transition-all duration-300 ease-in-out dark:bg-gray-900 dark:border-gray-700 dark:text-white" >
115
+ < div className = "p-6 mb-8 text-gray-900 bg-white rounded-2xl border border-gray-200 shadow-md transition-all duration-300 ease-in-out dark:bg-gray-900 dark:border-gray-700 dark:text-white" >
116
116
< h3 className = "mb-2 text-2xl font-semibold tracking-tight" > Focus Mode</ h3 >
117
117
< p className = "mb-4 text-gray-500 dark:text-gray-400" > Pomodoro Timer with advanced features</ p >
118
118
< div className = "mb-4 text-center" >
@@ -212,7 +212,7 @@ const DailyGoals: React.FC = () => {
212
212
< >
213
213
< FocusMode />
214
214
215
- < div data-aos = "fade-up" data-aos-delay = "150" className = { `rounded-2xl p-6 border transition-all duration-300 ease-in-out shadow-md ${ state . darkMode ? 'bg-gray-800 border-gray-700' : 'bg-white border-gray-200' } ` } >
215
+ < div className = { `rounded-2xl p-6 border transition-all duration-300 ease-in-out shadow-md ${ state . darkMode ? 'bg-gray-800 border-gray-700' : 'bg-white border-gray-200' } ` } >
216
216
< div className = "flex justify-between items-center mb-6" >
217
217
< h3 className = { `text-2xl font-semibold tracking-tight ${ state . darkMode ? 'text-white' : 'text-gray-900' } ` } >
218
218
Daily Goals
@@ -260,8 +260,6 @@ const DailyGoals: React.FC = () => {
260
260
state . dailyGoals . map ( ( goal , index ) => (
261
261
< div
262
262
key = { index }
263
- data-aos = "fade-up"
264
- data-aos-delay = { `${ index * 100 } ` }
265
263
className = { `flex items-center gap-4 p-4 rounded-xl border shadow-sm transition-all duration-200 ${
266
264
state . darkMode ? 'bg-gray-800 border-gray-700 hover:bg-gray-700' : 'bg-white border-gray-200 hover:bg-gray-100'
267
265
} `}
@@ -289,8 +287,6 @@ const DailyGoals: React.FC = () => {
289
287
{ state . completedGoals . map ( ( goal , index ) => (
290
288
< div
291
289
key = { index }
292
- data-aos = "fade-up"
293
- data-aos-delay = { `${ index * 100 } ` }
294
290
className = { `flex items-center gap-4 p-3 rounded-xl transition-all duration-200 ${
295
291
state . darkMode ? 'bg-gray-800 hover:bg-gray-700' : 'bg-gray-100 hover:bg-gray-200'
296
292
} `}
0 commit comments