From 01cef9e87040b1e190e5d36547ec8ab6a4a6e35a Mon Sep 17 00:00:00 2001 From: Elijah Meeks Date: Mon, 24 Jul 2023 08:18:09 -0700 Subject: [PATCH 1/4] Tweak Social Cards a Bit --- docusaurus.config.js | 19 ++++++++++++++++++- src/pages/index.tsx | 2 +- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 700de9f..dedbffe 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -66,8 +66,25 @@ const config = { colorMode: { respectPrefersColorScheme: true, }, - // Replace with your project's social card image: "img/noteable-platform-social-card.png", + metadata: [ + { name: "keywords", content: "cooking, blog" }, + { name: "twitter:card", content: "summary_large_image" }, + { name: "twitter:site", content: "@noteable_io" }, + { name: "twitter:title", content: "Noteable Platform" }, + { + name: "twitter:description", + content: + "Resources for developers working with Noteable notebook and LLM functionality", + }, + { name: "twitter:image", content: "/img/docusaurus-social-card.jpg" }, + { name: "og:title", content: "Noteable Platform" }, + { + name: "og:description", + content: + "Resources for developers working with Noteable notebook and LLM functionality", + }, + ], navbar: { title: "Noteable Developer Platform", logo: { diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 8c3d146..eeba42e 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -31,7 +31,7 @@ export default function Home(): JSX.Element { const { siteConfig } = useDocusaurusContext(); return ( From a05535cd108c320bd16e4cc6fdec09aff2c962cf Mon Sep 17 00:00:00 2001 From: Elijah Meeks Date: Mon, 24 Jul 2023 08:24:13 -0700 Subject: [PATCH 2/4] Update docusaurus.config.js --- docusaurus.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index dedbffe..e98fb19 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -68,7 +68,10 @@ const config = { }, image: "img/noteable-platform-social-card.png", metadata: [ - { name: "keywords", content: "cooking, blog" }, + { + name: "keywords", + content: "jupyter, python, llm, chatgpt, developer, blog", + }, { name: "twitter:card", content: "summary_large_image" }, { name: "twitter:site", content: "@noteable_io" }, { name: "twitter:title", content: "Noteable Platform" }, From f779457bff055f448cc9e5b953fc8be615185631 Mon Sep 17 00:00:00 2001 From: Elijah Meeks Date: Mon, 24 Jul 2023 08:26:16 -0700 Subject: [PATCH 3/4] Update docusaurus.config.js --- docusaurus.config.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index e98fb19..fb1fa44 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -72,7 +72,6 @@ const config = { name: "keywords", content: "jupyter, python, llm, chatgpt, developer, blog", }, - { name: "twitter:card", content: "summary_large_image" }, { name: "twitter:site", content: "@noteable_io" }, { name: "twitter:title", content: "Noteable Platform" }, { @@ -80,7 +79,6 @@ const config = { content: "Resources for developers working with Noteable notebook and LLM functionality", }, - { name: "twitter:image", content: "/img/docusaurus-social-card.jpg" }, { name: "og:title", content: "Noteable Platform" }, { name: "og:description", From 1087f66429bac30d795ee0b9fa399c277e4de381 Mon Sep 17 00:00:00 2001 From: Elijah Meeks Date: Mon, 24 Jul 2023 08:29:23 -0700 Subject: [PATCH 4/4] Update docusaurus.config.js --- docusaurus.config.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index fb1fa44..e299c79 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -73,18 +73,20 @@ const config = { content: "jupyter, python, llm, chatgpt, developer, blog", }, { name: "twitter:site", content: "@noteable_io" }, - { name: "twitter:title", content: "Noteable Platform" }, { name: "twitter:description", content: "Resources for developers working with Noteable notebook and LLM functionality", }, - { name: "og:title", content: "Noteable Platform" }, { name: "og:description", content: "Resources for developers working with Noteable notebook and LLM functionality", }, + { + name: "og:site_name", + content: "Noteable", + }, ], navbar: { title: "Noteable Developer Platform",