File tree Expand file tree Collapse file tree 4 files changed +265
-197
lines changed Expand file tree Collapse file tree 4 files changed +265
-197
lines changed Original file line number Diff line number Diff line change 23
23
"@emotion/react" : " ^11.10.5" ,
24
24
"@emotion/styled" : " ^11.10.5" ,
25
25
"@fontsource/outfit" : " ^4.5.9" ,
26
- "@vercel/og" : " ^0.0.19 " ,
26
+ "@vercel/og" : " ^0.0.21 " ,
27
27
"clsx" : " ^1.2.1" ,
28
28
"framer-motion" : " ^7.6.19" ,
29
29
"lodash-es" : " ^4.17.21" ,
30
- "next" : " ^12.3.4 " ,
30
+ "next" : " ^13.0.6 " ,
31
31
"next-seo" : " ^5.15.0" ,
32
32
"react" : " ^18.2.0" ,
33
33
"react-dom" : " ^18.2.0" ,
40
40
"@types/react" : " ^18.0.26" ,
41
41
"commitlint" : " ^17.3.0" ,
42
42
"eslint" : " ^8.29.0" ,
43
- "eslint-config-next" : " 12.3.1 " ,
43
+ "eslint-config-next" : " 13.0.6 " ,
44
44
"eslint-config-sznm" : " ^1.0.1" ,
45
45
"husky" : " ^8.0.2" ,
46
46
"lint-staged" : " ^13.1.0" ,
47
47
"next-sitemap" : " ^3.1.32" ,
48
- "prettier" : " ^2.8.0 " ,
48
+ "prettier" : " ^2.8.1 " ,
49
49
"standard-version" : " ^9.5.0" ,
50
50
"typescript" : " ^4.9.4"
51
51
}
Original file line number Diff line number Diff line change @@ -38,13 +38,13 @@ const Page404 = () => {
38
38
39
39
< Box textAlign = "center" marginTop = { 4 } >
40
40
< Text > It's Okay!</ Text >
41
- < Link href = "/" passHref >
42
- < Button
43
- backgroundColor = { colorMode === "light" ? "gray.300" : "teal.500" }
44
- >
45
- Let's Head Back
46
- </ Button >
47
- </ Link >
41
+ < Button
42
+ as = { Link }
43
+ href = "/"
44
+ backgroundColor = { colorMode === "light" ? "gray.300" : "teal.500" }
45
+ >
46
+ Let's Head Back
47
+ </ Button >
48
48
</ Box >
49
49
</ Box >
50
50
</ >
Original file line number Diff line number Diff line change @@ -14,11 +14,9 @@ const Home = () => {
14
14
< Text > Edge service to generate embeddable dynamic OpenGraph image</ Text >
15
15
16
16
< Flex justifyContent = "center" >
17
- < Link href = "/generate" passHref >
18
- < Button as = "a" colorScheme = "teal" >
19
- Generate
20
- </ Button >
21
- </ Link >
17
+ < Button as = { Link } href = "/generate" colorScheme = "teal" >
18
+ Generate
19
+ </ Button >
22
20
</ Flex >
23
21
</ Stack >
24
22
) ;
You can’t perform that action at this time.
0 commit comments