Seperated the two images. OG doesn't support SVG. Browsers do.

This commit is contained in:
Lucid Kobold
2021-12-31 10:02:26 -06:00
parent 0d13f36e37
commit e5b759804c

View File

@@ -7,7 +7,8 @@ const description =
// "Behavior and progress tracker for ABDLs and babyfurs alike. Track multiple littles and create any trackers you would like.";
"Pre-alpha preview of the behavior and progress tracker for ABDLs and babyfurs.";
const logo = "/images/logo.png";
const logo = "images/logo.svg"
const logoOG = "/images/logo.png";
class Document extends NextDocument {
render(): JSX.Element {
@@ -20,7 +21,7 @@ class Document extends NextDocument {
<meta property="og:title" content="LCM Potty Chart" />
<meta name="og:description" content={description} />
<meta property="og:type" content="Progress Tracking" />
<meta property="og:image" content={logo} />
<meta property="og:image" content={logoOG} />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:alt" content="LCM Potty Chart Logo" />
<meta property="og:url" content="https://lucidcreations.media" />
@@ -28,7 +29,7 @@ class Document extends NextDocument {
<meta property="title" content="LCM Potty Chart" />
<meta name="description" content={description} />
<meta property="type" content="Progress Tracking" />
<meta property="image" content={logo} />
<meta property="image" content={logoOG} />
<meta property="image:type" content="image/png" />
<meta property="image:alt" content="LCM Potty Chart Logo" />
<meta property="url" content="https://https://lucidcreations.media" />