1- import  {   Providers   }  from  '@/app/providers' ; 
2- import  {   Layout   }  from  '@/components/Layout' ; 
3- import  {   GoogleAnalytics   }  from  '@next/third-parties/google' ; 
1+ import  { Providers }  from  '@/app/providers' ; 
2+ import  { Layout }  from  '@/components/Layout' ; 
3+ import  { GoogleAnalytics }  from  '@next/third-parties/google' ; 
44import  clsx  from  'clsx' ; 
55import  config  from  'docs.config' ; 
6- import  {   type  Metadata   }  from  'next' ; 
7- import  {   Inter   }  from  'next/font/google' ; 
6+ import  { type  Metadata }  from  'next' ; 
7+ import  { Inter }  from  'next/font/google' ; 
88import  localFont  from  'next/font/local' ; 
9- import  Chatbot  from  '@/components/ChatBot' ; 
109
11- import  '@langbase/components/styles' 
1210import  '@/styles/tailwind.css' ; 
11+ import  '@langbase/components/styles' ; 
1312
1413const  inter  =  Inter ( { 
1514	subsets : [ 'latin' ] , 
@@ -30,60 +29,60 @@ export const metadata: Metadata = {
3029		template : '%s - Sourcegraph docs' , 
3130		default : 'Sourcegraph docs' 
3231	} , 
33- 	description : 'Documentation for Sourcegraph, the code intelligence platform.' , 
32+ 	description :
33+ 		'Documentation for Sourcegraph, the code intelligence platform.' , 
3434	other : { 
35- 		" docsearch:language" :  "en" , 
36- 		" docsearch:version"  : `v${ config . DOCS_LATEST_VERSION }  ` 
35+ 		' docsearch:language' :  'en' , 
36+ 		' docsearch:version'  : `v${ config . DOCS_LATEST_VERSION }  ` 
3737	} , 
3838	alternates : { 
3939		canonical : '/docs' 
4040	} , 
4141	openGraph : { 
42- 		images : [ {   url : 'https://sourcegraph.com/docs/sourcegraph-docs-c .png'   } ] 
42+ 		images : [ { url : 'https://sourcegraph.com/docs/sourcegraph-og-nw .png' } ] 
4343	} 
4444} ; 
4545
46- 
4746// PolySans Variable Font 
4847const  polySansVariable  =  localFont ( { 
49-    src : [ 
50-      { 
51-        path : '../fonts/PolySans-Neutral.woff' , 
52-        style : 'normal' , 
53-      } , 
54-      { 
55-        path : '../fonts/PolySans-NeutralItalic.woff' , 
56-        style : 'italic' , 
57-      } 
58-    ] , 
59-    variable : '--font-polysans' 
48+ 	 src : [ 
49+ 		 { 
50+ 			 path : '../fonts/PolySans-Neutral.woff' , 
51+ 			 style : 'normal' 
52+ 		 } , 
53+ 		 { 
54+ 			 path : '../fonts/PolySans-NeutralItalic.woff' , 
55+ 			 style : 'italic' 
56+ 		 } 
57+ 	 ] , 
58+ 	 variable : '--font-polysans' 
6059} ) ; 
6160
6261// PolySans Mono Font 
6362const  polySansMono  =  localFont ( { 
64-    src : [ 
65-      { 
66-        path : '../fonts/PolySans-NeutralMono.woff' , 
67-        style : 'normal' , 
68-      } , 
69-      { 
70-        path : '../fonts/PolySans-SlimMono.woff' , 
71-        style : 'normal' , 
72-      } 
73-    ] , 
74-    variable : '--font-polysans-mono' 
63+ 	 src : [ 
64+ 		 { 
65+ 			 path : '../fonts/PolySans-NeutralMono.woff' , 
66+ 			 style : 'normal' 
67+ 		 } , 
68+ 		 { 
69+ 			 path : '../fonts/PolySans-SlimMono.woff' , 
70+ 			 style : 'normal' 
71+ 		 } 
72+ 	 ] , 
73+ 	 variable : '--font-polysans-mono' 
7574} ) ; 
7675
77- export  default  function  RootLayout ( {   children  } : {   children : React . ReactNode   } )  { 
76+ export  default  function  RootLayout ( { children} : { children : React . ReactNode } )  { 
7877	return  ( 
7978		< html 
8079			lang = "en" 
81- 			style = { {   colorScheme : 'dark'   } } 
80+ 			style = { { colorScheme : 'dark' } } 
8281			className = { clsx ( 
83-          'h-full antialiased' , 
84-          polySansVariable . variable , 
85-          polySansMono . variable 
86-        ) } 
82+ 				 'h-full antialiased' , 
83+ 				 polySansVariable . variable , 
84+ 				 polySansMono . variable 
85+ 			 ) } 
8786			suppressHydrationWarning 
8887		> 
8988			< head > 
0 commit comments