Add a little comment for those viewing HTML source that we could use contributors

This commit is contained in:
Gabe Kangas 2023-01-11 18:26:54 -08:00
parent bfb245efe2
commit 9cc7b1cf2d
No known key found for this signature in database
GPG Key ID: 4345B2060657F330
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,4 @@
/* eslint-disable react/no-danger */
export const HtmlComment = ({ text }) => (
<div dangerouslySetInnerHTML={{ __html: `<!-- ${text} -->` }} />
);

View File

@ -1,8 +1,8 @@
/* eslint-disable react/no-danger */
import { Html, Head, Main, NextScript } from 'next/document';
import { readFileSync } from 'fs';
import { join } from 'path';
import { HtmlComment } from '../components/common/HtmlComment/HtmlComment';
class InlineStylesHead extends Head {
getCssLinks: Head['getCssLinks'] = ({ allFiles }) => {
@ -26,6 +26,7 @@ class InlineStylesHead extends Head {
export default function Document() {
return (
<Html lang="en">
<HtmlComment text="If you're reading this we'd love your help with Owncast! Visit https://owncast.online/help to see how you can contribute to make independent, open source live streaming better with your help." />
<InlineStylesHead />
<body>
<Main />