Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tweak Social Cards a Bit #16

Merged
merged 4 commits into from
Jul 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,28 @@ const config = {
colorMode: {
respectPrefersColorScheme: true,
},
// Replace with your project's social card
image: "img/noteable-platform-social-card.png",
metadata: [
{
name: "keywords",
content: "jupyter, python, llm, chatgpt, developer, blog",
},
{ name: "twitter:site", content: "@noteable_io" },
{
name: "twitter:description",
content:
"Resources for developers working with Noteable notebook and LLM functionality",
},
{
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",
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 />"
rgbkrk marked this conversation as resolved.
Show resolved Hide resolved
>
<HomepageHeader />
Expand Down