Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tinazone
/
handspew
like
18
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6044c4d
handspew
/
pages
/
_document.js
Tina Tarighian
initial
065d164
13 days ago
raw
Copy download link
history
blame
Safe
257 Bytes
import
{
Html
,
Head
,
Main
,
NextScript
}
from
"next/document"
;
export
default
function
Document
(
) {
return
(
<
Html
lang
=
"en"
>
<
Head
/>
<
body
className
=
"antialiased"
>
<
Main
/>
<
NextScript
/>
</
body
>
</
Html
>
);
}