mirror of
				https://github.com/theoludwig/theoludwig.git
				synced 2025-11-04 00:19:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			320 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			320 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { Html, Head, Main, NextScript } from 'next/document'
 | 
						|
 | 
						|
const Document: React.FC = () => {
 | 
						|
  return (
 | 
						|
    <Html>
 | 
						|
      <Head />
 | 
						|
      <body className='bg-white font-headline text-black dark:bg-black dark:text-white'>
 | 
						|
        <Main />
 | 
						|
        <NextScript />
 | 
						|
      </body>
 | 
						|
    </Html>
 | 
						|
  )
 | 
						|
}
 | 
						|
 | 
						|
export default Document
 |