mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 15:05:35 +00:00
17 lines
392 B
TypeScript
17 lines
392 B
TypeScript
import { Html, Head, Main, NextScript } from 'next/document';
|
|
|
|
const Document = () => (
|
|
<Html lang='fr'>
|
|
<Head />
|
|
<title>Superpipo</title>
|
|
<body>
|
|
<noscript>
|
|
Vous devez activer JavaScript pour utiliser ce site
|
|
</noscript>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
|
|
export default Document; |