1
- import type { Metadata } from " next" ;
2
- import localFont from " next/font/local" ;
1
+ import type { Metadata } from ' next' ;
2
+ import localFont from ' next/font/local' ;
3
3
4
4
import { Provider as RollbarProvider } from '@rollbar/react' ;
5
5
import { clientConfig } from '@/rollbar' ;
6
6
7
- import " ./globals.css" ;
7
+ import ' ./globals.css' ;
8
8
9
9
const geistSans = localFont ( {
10
- src : " ./fonts/GeistVF.woff" ,
11
- variable : " --font-geist-sans" ,
12
- weight : " 100 900" ,
10
+ src : ' ./fonts/GeistVF.woff' ,
11
+ variable : ' --font-geist-sans' ,
12
+ weight : ' 100 900' ,
13
13
} ) ;
14
14
const geistMono = localFont ( {
15
- src : " ./fonts/GeistMonoVF.woff" ,
16
- variable : " --font-geist-mono" ,
17
- weight : " 100 900" ,
15
+ src : ' ./fonts/GeistMonoVF.woff' ,
16
+ variable : ' --font-geist-mono' ,
17
+ weight : ' 100 900' ,
18
18
} ) ;
19
19
20
20
export const metadata : Metadata = {
21
- title : " Create Next App" ,
22
- description : " Generated by create next app" ,
21
+ title : ' Create Next App' ,
22
+ description : ' Generated by create next app' ,
23
23
} ;
24
24
25
25
export default async function RootLayout ( {
@@ -34,7 +34,6 @@ export default async function RootLayout({
34
34
className = { `${ geistSans . variable } ${ geistMono . variable } antialiased` }
35
35
>
36
36
{ children }
37
- { Array . isArray ( posts ) && < span > Found some posts</ span > }
38
37
</ body >
39
38
</ html >
40
39
</ RollbarProvider >
0 commit comments