Skip to content

Commit

Permalink
feat: head poem
Browse files Browse the repository at this point in the history
  • Loading branch information
8bitgentleman committed Jul 15, 2024
1 parent 5e517b1 commit 65c1a65
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion quartz/components/renderPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,18 @@ export function renderPage(
.map((res) => JSResourceToScriptElement(res))}
</html>
)
const poemComment = `
<!----------------------------------------------->
<!-- -->
<!-- Hello, curious explorer of code, -->
<!-- In this digital realm we briefly meet. -->
<!-- Our shared curiosity connects us now, -->
<!-- A fleeting moment, yet profound and sweet.-->
<!-- -->
<!-- https://github.com/8bitgentleman/8bitgentleman.github.io -->
<!-- -->
<!----------------------------------------------->
return "<!DOCTYPE html>\n" + render(doc)
`
return poemComment + "<!DOCTYPE html>\n" + render(doc)
}

0 comments on commit 65c1a65

Please sign in to comment.