mirror of
				https://github.com/DerTyp7/explainegy-nextjs.git
				synced 2025-10-30 21:27:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			293 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			293 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { Html, Head, Main, NextScript } from "next/document";
 | |
| 
 | |
| export default function Document() {
 | |
|   return (
 | |
|     <Html lang="en" style={{ scrollBehavior: "smooth" }}>
 | |
|       <Head />
 | |
|       <body className="theme-dark">
 | |
|         <Main />
 | |
|         <NextScript />
 | |
|       </body>
 | |
|     </Html>
 | |
|   );
 | |
| }
 | 
