MCPcopy Create free account
hub / github.com/TejasQ/tejaskumar.com / render

Method render

pages/_document.tsx:4–33  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2
3class MyDocument extends Document {
4 render() {
5 return (
6 <Html lang="en">
7 <Head>
8 <link
9 rel="icon"
10 href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🧔🏾</text></svg>"
11 />
12 <link
13 href="https://fonts.googleapis.com/css?family=Roboto:400,900"
14 rel="stylesheet"
15 />
16 <link
17 href="https://fonts.googleapis.com/css?family=DM+Sans:400,700|Gloria+Hallelujah|Inria+Serif&amp;display=swap"
18 rel="stylesheet"
19 />
20 <link
21 href="https://tejaskumar.com/api/rss"
22 rel="alternate"
23 type="application/rss+xml"
24 title="RSS for blog posts"
25 />
26 </Head>
27 <body>
28 <Main />
29 <NextScript />
30 </body>
31 </Html>
32 );
33 }
34}
35
36export default MyDocument;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected