Skip to content

Commit ec760e6

Browse files
author
Scarlett Eliza
authored
feat: add OG image and fix tagline (#123)
1 parent 43fcf7b commit ec760e6

File tree

5 files changed

+4
-2
lines changed

5 files changed

+4
-2
lines changed

site/docusaurus.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ const config = {
5050
themeConfig:
5151
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
5252
({
53+
image: '/img/meta/open-graph.png',
5354
navbar: {
5455
logo: {
5556
alt: 'Very Good Workflows',

site/src/pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default function Home(): JSX.Element {
3434
const { siteConfig } = useDocusaurusContext();
3535
return (
3636
<Layout
37-
description={`The official documentation site for Very Good Workflows. ${siteConfig.tagline}.`}
37+
description={`The official documentation site for Very Good Workflows. ${siteConfig.tagline}`}
3838
>
3939
<HomepageHeader />
4040
<main>

site/static/img/favicon.ico

310 Bytes
Binary file not shown.
15.7 KB
Loading

site/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// This file is not used in compilation. It is here just for a nice editor experience.
33
"extends": "@tsconfig/docusaurus/tsconfig.json",
44
"compilerOptions": {
5-
"baseUrl": "."
5+
"baseUrl": ".",
6+
"jsx": "react-jsx"
67
}
78
}

0 commit comments

Comments
 (0)