go.charczuk.com@v0.0.0-20240327042549-bc490516bd1a/projects/chirp/pkg/static/_nextjs/src/pages/_document.tsx (about)

     1  /**
     2   * Copyright (c) 2024 - Present. Will Charczuk. All rights reserved.
     3   * Use of this source code is governed by a MIT license that can be found in the LICENSE file at the root of the repository.
     4   */
     5  import {Html, Head, Main, NextScript} from 'next/document';
     6  import * as React from 'react-dom';
     7  
     8  export default function Document() {
     9    return (
    10      <Html>
    11        <Head />
    12        <body className="bp5-dark">
    13          <Main />
    14          <NextScript />
    15        </body>
    16      </Html>
    17    )
    18  }