File tree 5 files changed +6156
-3344
lines changed
5 files changed +6156
-3344
lines changed Original file line number Diff line number Diff line change 15
15
"@sanity/image-url" : " ^1.1.0" ,
16
16
"@sanity/uuid" : " ^3.0.2" ,
17
17
"@tailwindcss/typography" : " ^0.5.15" ,
18
- "@types/node" : " ^20.14.13" ,
19
- "@types/react" : " ^18.3.12" ,
20
- "@types/react-dom" : " ^18.3.1" ,
21
18
"@vercel/speed-insights" : " ^1.1.0" ,
22
19
"autoprefixer" : " ^10.4.20" ,
23
20
"date-fns" : " ^3.6.0" ,
24
- "next" : " ^15.0.4" ,
25
- "next-sanity" : " ^9.8.18" ,
26
- "postcss" : " ^8.4.49" ,
21
+ "next" : " ^15.1.6" ,
22
+ "next-sanity" : " ^9.8.42" ,
27
23
"react" : " ^19.0.0" ,
28
24
"react-dom" : " ^19.0.0" ,
29
- "sanity" : " ^3.65.0 " ,
25
+ "sanity" : " ^3.71.2 " ,
30
26
"sonner" : " ^1.7.0" ,
31
- "styled-components" : " ^6.1.13" ,
32
- "tailwindcss" : " ^3.4.15" ,
33
- "typescript" : " 5.6.3"
27
+ "styled-components" : " ^6.1.13"
34
28
},
35
29
"devDependencies" : {
30
+ "typescript" : " 5.6.3" ,
36
31
"eslint" : " ^8.57.0" ,
37
- "eslint-config-next" : " ^15.0.3"
32
+ "@types/react-dom" : " ^18.3.1" ,
33
+ "@types/node" : " ^20.14.13" ,
34
+ "@types/react" : " ^18.3.12" ,
35
+ "eslint-config-next" : " ^15.0.3" ,
36
+ "postcss" : " ^8.4.49" ,
37
+ "tailwindcss" : " ^3.4.15"
38
38
}
39
39
}
Original file line number Diff line number Diff line change @@ -571,7 +571,7 @@ export type GetPageQueryResult = {
571
571
export type AllPostsQueryResult = Array < {
572
572
_id : string ;
573
573
status : "draft" | "published" ;
574
- title : string | "Untitled" ;
574
+ title : string ;
575
575
slug : string ;
576
576
excerpt : string | null ;
577
577
coverImage : {
@@ -609,7 +609,7 @@ export type AllPostsQueryResult = Array<{
609
609
export type MorePostsQueryResult = Array < {
610
610
_id : string ;
611
611
status : "draft" | "published" ;
612
- title : string | "Untitled" ;
612
+ title : string ;
613
613
slug : string ;
614
614
excerpt : string | null ;
615
615
coverImage : {
@@ -680,7 +680,7 @@ export type PostQueryResult = {
680
680
} > | null ;
681
681
_id : string ;
682
682
status : "draft" | "published" ;
683
- title : string | "Untitled" ;
683
+ title : string ;
684
684
slug : string ;
685
685
excerpt : string | null ;
686
686
coverImage : {
You can’t perform that action at this time.
0 commit comments