Skip to content

Commit 430d247

Browse files
docs updates
1 parent 8554a62 commit 430d247

File tree

4 files changed

+44
-4
lines changed

4 files changed

+44
-4
lines changed

docs/docs/getting-started/installation.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
---
2+
title: Installation
3+
description: Step-by-step guide to install Agentic Signal, set up prerequisites, and start building visual AI workflows with local intelligence.
24
sidebar_position: 1
35
---
46

docs/docs/nodes/overview.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
---
2+
title: Intro
3+
description: Explore all available node types and integrations in Agentic Signal. Learn how to configure data sources, AI processors, validation, and output nodes for your workflows.
24
sidebar_position: 1
35
---
46

docs/docs/workflows/overview.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
---
2+
title: Intro
3+
description: Discover ready-to-use workflow templates for Agentic Signal. Download, import, and customize visual AI workflows for data processing, automation, and integration.
24
sidebar_position: 1
35
---
46

docs/docusaurus.config.ts

Lines changed: 38 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ import {themes as prismThemes} from 'prism-react-renderer';
88
import type {Config} from '@docusaurus/types';
99
import type * as Preset from '@docusaurus/preset-classic';
1010

11+
const TITLE = 'Agentic Signal';
12+
const TAGLINE = 'Visual AI Workflow Automation Platform with Local Agent Intelligence';
13+
1114
const config: Config = {
12-
title: 'Agentic Signal',
13-
tagline: 'Visual AI Workflow Automation Platform with Local Agent Intelligence',
15+
title: TITLE,
16+
tagline: TAGLINE,
1417
favicon: 'img/logo.svg',
1518

1619
future: {
@@ -45,19 +48,41 @@ const config: Config = {
4548
theme: {
4649
customCss: './src/css/custom.css',
4750
},
51+
sitemap: {
52+
lastmod: 'date',
53+
changefreq: 'weekly',
54+
priority: 0.5,
55+
ignorePatterns: ['/tags/**'],
56+
filename: 'sitemap.xml',
57+
createSitemapItems: async (params) => {
58+
const {defaultCreateSitemapItems, ...rest} = params;
59+
const items = await defaultCreateSitemapItems(rest);
60+
61+
const filteredItems = items.filter((item) => !item.url.includes('/page/'));
62+
63+
filteredItems.push({
64+
url: 'https://pricing.agentic-signal.com',
65+
changefreq: 'weekly',
66+
priority: 0.7,
67+
lastmod: new Date().toISOString(),
68+
});
69+
70+
return filteredItems;
71+
},
72+
},
4873
} satisfies Preset.Options,
4974
],
5075
],
5176

5277
themeConfig: {
53-
image: 'img/docusaurus-social-card.jpg',
78+
image: '/img/logo.svg',
5479
colorMode: {
5580
defaultMode: 'dark',
5681
disableSwitch: false,
5782
respectPrefersColorScheme: false,
5883
},
5984
navbar: {
60-
title: 'Agentic Signal',
85+
title: TITLE,
6186
logo: {
6287
alt: 'Agentic Signal Logo',
6388
src: 'img/logo.svg',
@@ -144,6 +169,15 @@ const config: Config = {
144169
darkTheme: prismThemes.dracula,
145170
additionalLanguages: ['typescript', 'javascript', 'json', 'bash'],
146171
},
172+
metadata: [
173+
{name: 'og:title', content: TITLE},
174+
{name: 'og:description', content: TAGLINE},
175+
{name: 'og:image', content: '/img/logo.svg'},
176+
{name: 'twitter:card', content: 'summary_large_image'},
177+
{name: 'twitter:title', content: TITLE},
178+
{name: 'twitter:description', content: TAGLINE},
179+
{name: 'twitter:image', content: '/img/logo.svg'},
180+
],
147181
} satisfies Preset.ThemeConfig,
148182
};
149183

0 commit comments

Comments
 (0)