Commit cc03710 1 parent cb4ce72 commit cc03710 Copy full SHA for cc03710
File tree 7 files changed +15
-15
lines changed
7 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ const config = {
10
10
"next/core-web-vitals" ,
11
11
"plugin:@typescript-eslint/recommended-type-checked" ,
12
12
"plugin:@typescript-eslint/stylistic-type-checked" ,
13
- "plugin:storybook/recommended"
13
+ "plugin:storybook/recommended" ,
14
14
] ,
15
15
rules : {
16
16
// Next.js pages/layouts must be async functions, but not always have something to await
Original file line number Diff line number Diff line change 83
83
"jwt-decode" : " ^4.0.0" ,
84
84
"npm-check-updates" : " ^17.1.1" ,
85
85
"postcss" : " ^8.4.47" ,
86
- "prettier" : " ^3.2.5 " ,
86
+ "prettier" : " ^3.3.3 " ,
87
87
"prettier-plugin-tailwindcss" : " ^0.6.6" ,
88
88
"react-render-prop-type" : " ^0.1.0" ,
89
89
"storybook" : " ^8.3.0" ,
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ export default async function Layout({
34
34
user = { user }
35
35
signOutButton = { < SignOutButton > { t ( "signOut" ) } </ SignOutButton > }
36
36
/>
37
- < main className = "container mx-auto flex flex-1 " > { children } </ main >
37
+ < main className = "container mx-auto flex flex-1" > { children } </ main >
38
38
</ >
39
39
) ;
40
40
}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export default async function Onboarding({ params: { lng } }: Params) {
15
15
const { t } = await useTranslation ( "onboarding" , lng ) ;
16
16
17
17
return (
18
- < main className = "flex min-h-screen flex-col items-center justify-center " >
18
+ < main className = "flex min-h-screen flex-col items-center justify-center" >
19
19
< h1 className = "mb-4 text-6xl font-extrabold tracking-tight" >
20
20
{ t ( "title" ) }
21
21
</ h1 >
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ export default async function Home({ params: { lng } }: Params) {
16
16
17
17
return (
18
18
< >
19
- < main className = "flex min-h-screen flex-col items-center justify-center bg-gradient-to-r from-green-400 to-cyan-600 text-white" >
20
- < div className = "container flex flex-col items-center justify-center gap-12 px-4 py-16 " >
19
+ < main className = "flex min-h-screen flex-col items-center justify-center bg-gradient-to-r from-green-400 to-cyan-600 text-white" >
20
+ < div className = "container flex flex-col items-center justify-center gap-12 px-4 py-16" >
21
21
< h1 className = "text-5xl font-extrabold tracking-tight sm:text-[5rem]" >
22
22
< span > NET3</ span > Starter
23
23
</ h1 >
@@ -29,7 +29,7 @@ export default async function Home({ params: { lng } }: Params) {
29
29
< h3 className = "text-2xl font-bold" > { t ( "signIn" ) } </ h3 >
30
30
</ Link >
31
31
< Link
32
- className = " rounded-xl bg-white/10 p-4 text-center hover:bg-white/20"
32
+ className = "rounded-xl bg-white/10 p-4 text-center hover:bg-white/20"
33
33
href = "/signup"
34
34
>
35
35
< h3 className = "text-2xl font-bold" > { t ( "signUp" ) } </ h3 >
Original file line number Diff line number Diff line change 26
26
/* Path Aliases */
27
27
"baseUrl" : "." ,
28
28
"paths" : {
29
- "@/*" : [ "./src/*" ] ,
30
- } ,
29
+ "@/*" : [ "./src/*" ]
30
+ }
31
31
} ,
32
32
"include" : [
33
33
".eslintrc.cjs" ,
36
36
"**/*.tsx" ,
37
37
"**/*.cjs" ,
38
38
"**/*.mjs" ,
39
- ".next/types/**/*.ts" ,
39
+ ".next/types/**/*.ts"
40
40
] ,
41
- "exclude" : [ "node_modules" ] ,
41
+ "exclude" : [ "node_modules" ]
42
42
}
You can’t perform that action at this time.
0 commit comments