File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ export const metadata: Metadata = {
11
11
12
12
export default function RootLayout ( {
13
13
children,
14
- } : {
14
+ } : Readonly < {
15
15
children : React . ReactNode ;
16
- } ) : JSX . Element {
16
+ } > ) {
17
17
return (
18
18
< html lang = "en" >
19
19
< body className = { inter . className } > { children } </ body >
Original file line number Diff line number Diff line change 1
1
import Image from "next/image"
2
2
import { Button } from "@ui/components/button"
3
3
4
- export default function Page ( ) : JSX . Element {
4
+ export default function Home ( ) {
5
5
return (
6
6
< main className = "flex flex-col items-center justify-between min-h-screen p-24" >
7
7
< div className = "flex flex-col items-center justify-between min-h-screen p-24 w-screen h-screen top-[0] absolute gradient blur-3xl opacity-30" > </ div >
You can’t perform that action at this time.
0 commit comments