change git url

master
Niko 1 year ago
parent f6d7777e03
commit 2397e5bc6f
  1. 71
      src/config.ts
  2. 2
      src/pages/en/design.md
  3. 2
      src/pages/en/getting-started.md
  4. 2
      src/pages/en/help.md
  5. 2
      src/pages/en/introduction.md

@ -1,31 +1,30 @@
export const SITE = {
title: 'NextGraph Docs',
description: 'NextGraph Documentation',
defaultLanguage: 'en_US',
title: "NextGraph Docs",
description: "NextGraph Documentation",
defaultLanguage: "en_US",
};
export const OPEN_GRAPH = {
image: {
src: 'https://docs.nextgraph.org/public/logo-text.png',
alt:
'NextGraph logo,'
},
twitter: 'nextgraph',
image: {
src: "https://docs.nextgraph.org/public/logo-text.png",
alt: "NextGraph logo,",
},
twitter: "nextgraph",
};
// This is the type of the frontmatter you put in the docs markdown files.
export type Frontmatter = {
title: string;
description: string;
layout: string;
image?: { src: string; alt: string };
dir?: 'ltr' | 'rtl';
ogLocale?: string;
lang?: string;
title: string;
description: string;
layout: string;
image?: { src: string; alt: string };
dir?: "ltr" | "rtl";
ogLocale?: string;
lang?: string;
};
export const KNOWN_LANGUAGES = {
English: 'en',
English: "en",
} as const;
export const KNOWN_LANGUAGE_CODES = Object.values(KNOWN_LANGUAGES);
@ -35,29 +34,27 @@ export const COMMUNITY_INVITE_URL = `https://forum.nextgraph.org`;
// See "Algolia" section of the README for more information.
export const ALGOLIA = {
indexName: 'docs',
appId: 'XXXXXXXXXX',
apiKey: '08IMxBGqKrHJTIoq1dHfmaw9MSeLetwfLbuRvQuXZAZFWckX',
indexName: "docs",
appId: "XXXXXXXXXX",
apiKey: "08IMxBGqKrHJTIoq1dHfmaw9MSeLetwfLbuRvQuXZAZFWckX",
};
export type Sidebar = Record<
typeof KNOWN_LANGUAGE_CODES[number],
Record<string, { text: string; link: string }[]>
typeof KNOWN_LANGUAGE_CODES[number],
Record<string, { text: string; link: string }[]>
>;
export const SIDEBAR: Sidebar = {
en: {
'Guides': [
{ text: 'Introduction', link: 'en/introduction' },
{ text: 'Getting started', link: 'en/getting-started' },
{ text: 'Help / FAQ', link: 'en/help' },
{ text: 'Accessibility', link: 'en/accessibility' }],
'Design': [
{ text: 'Overview', link: 'en/design' },
{ text: 'Specifications', link: 'en/specs' },
],
'API Reference': [
{ text: 'API', link: 'en/api' },
],
},
en: {
Guides: [
{ text: "Introduction", link: "en/introduction" },
{ text: "Getting started", link: "en/getting-started" },
{ text: "Help / FAQ", link: "en/help" },
{ text: "Accessibility", link: "en/accessibility" },
],
Design: [
{ text: "Overview", link: "en/design" },
{ text: "Specifications", link: "en/specs" },
],
"API Reference": [{ text: "API", link: "en/api" }],
},
};

@ -8,6 +8,6 @@ layout: ../../layouts/MainLayout.astro
In the meanwhile, you can join the [forum](https://forum.nextgraph.org).
And look at the code in our [Gitea instance](https://git.nextgraph.org).
And look at the code in our [Gitea instance](https://git.nextgraph.org/NextGraph).
Stay tuned by subscribing to our [newsletter](https://list.nextgraph.org/subscription/form).

@ -9,6 +9,6 @@ The "Getting started" guide will be available soon.
If you want to know more, have questions or want to get in touch with us, the simplest way is to join the [forum](https://forum.nextgraph.org).
For bug reports, please create an account and submit a new issue in our [Gitea instance](https://git.nextgraph.org).
For bug reports, please create an account and submit a new issue in our [Gitea instance](https://git.nextgraph.org/NextGraph).
Stay tuned by subscribing to our [newsletter](https://list.nextgraph.org/subscription/form).

@ -6,4 +6,4 @@ layout: ../../layouts/MainLayout.astro
If you have questions or want to get in touch with us, the simplest way is to join the [forum](https://forum.nextgraph.org).
For bug reports, please create an account and submit a new issue in our [Gitea instance](https://git.nextgraph.org).
For bug reports, please create an account and submit a new issue in our [Gitea instance](https://git.nextgraph.org/NextGraph).

@ -12,6 +12,6 @@ Come back soon as this page will be updated quickly.
If you have questions or want to get in touch with us, the simplest way is to join the [forum](https://forum.nextgraph.org).
For bug reports, please create an account and submit a new issue in our [Gitea instance](https://git.nextgraph.org).
For bug reports, please create an account and submit a new issue in our [Gitea instance](https://git.nextgraph.org/NextGraph).
Stay tuned by subscribing to our [newsletter](https://list.nextgraph.org/subscription/form).

Loading…
Cancel
Save