Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Trudy/gemini-codrawing
TDN-M
/
codrawing
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
bdad456
codrawing
/
pages
/
_document.js
Trudy
first commit
eceac5b
8 months 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
>
);
}