Skip to content

Commit

Permalink
Tweak Social Cards a Bit
Browse files Browse the repository at this point in the history
  • Loading branch information
emeeks committed Jul 24, 2023
1 parent e678ac9 commit 01cef9e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
19 changes: 18 additions & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function Home(): JSX.Element {
const { siteConfig } = useDocusaurusContext();
return (
<Layout
title={`Hello from ${siteConfig.title}`}
title={`${siteConfig.title}`}
description="Description will go into a meta tag in <head />"
>
<HomepageHeader />
Expand Down

0 comments on commit 01cef9e

Please sign in to comment.