File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ export default async function HomePage() {
31
31
}
32
32
33
33
async function getLearns ( ) : Promise < ILearn [ ] > {
34
+ revalidatePath ( '/' )
34
35
const response = await prisma . learn . findMany ( )
35
36
return response . map ( learnDto )
36
37
}
Original file line number Diff line number Diff line change 209
209
.single-star : nth-child (5 )::after {
210
210
animation-delay : 1.8s ;
211
211
}
212
+
213
+ @media only screen and (max-width : 1024px ) {
214
+ @keyframes falling {
215
+ 0% {
216
+ transform : translateX (0 );
217
+ }
218
+
219
+ 100% {
220
+ transform : translateX (200px );
221
+ }
222
+ }
223
+ }
Original file line number Diff line number Diff line change 1
1
export default function ShiningStar ( ) {
2
2
return (
3
- < div className = "absolute right-0 top-64" >
3
+ < div className = "fixed right-0 top-64" >
4
4
< div className = "night" >
5
5
< div className = "single-star" > </ div >
6
6
< div className = "single-star" > </ div >
You can’t perform that action at this time.
0 commit comments