Skip to content

Commit

Permalink
[website] Adds some metadata to Docusaurus
Browse files Browse the repository at this point in the history
  • Loading branch information
jacomyal committed Nov 19, 2024
1 parent a42e764 commit 8874e8e
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion packages/website/docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion

const TAGLINE = "a JavaScript library aimed at visualizing graphs of thousands of nodes and edges";

/** @type {import('@docusaurus/types').Config} */
const config = {
title: "sigma.js",
tagline: "a JavaScript library aimed at visualizing graphs of thousands of nodes and edges",
tagline: TAGLINE,
favicon: "img/favicon.ico",

// Set the production url of your site here
Expand Down Expand Up @@ -89,6 +91,16 @@ const config = {
matomoUrl: "https://matomo.ouestware.com/",
siteId: 26,
},
metadata: [
{
name: "description",
content: TAGLINE,
},
{
name: "theme-color",
content: "#e22653",
},
],
}),
};

Expand Down

0 comments on commit 8874e8e

Please sign in to comment.