Skip to content

Commit 710a9af

Browse files
committed
site: fix broken discord link
1 parent 2eb328a commit 710a9af

File tree

2 files changed

+446
-405
lines changed

2 files changed

+446
-405
lines changed

site/docusaurus.config.ts

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import type * as Preset from "@docusaurus/preset-classic";
22
import type { Config } from "@docusaurus/types";
33
import { themes as prismThemes } from "prism-react-renderer";
4-
import path from 'path';
54

65
const config: Config = {
76
title: "Ouroboros Leios",
@@ -39,11 +38,10 @@ const config: Config = {
3938
],
4039

4140
// Configure static file serving
42-
staticDirectories: ['static', 'public'],
41+
staticDirectories: ["static", "public"],
4342

4443
// Configure plugins
45-
plugins: [
46-
],
44+
plugins: [],
4745

4846
presets: [
4947
[
@@ -121,8 +119,8 @@ const config: Config = {
121119
},
122120
{
123121
to: "https://leios.cardano-scaling.org/visualizer",
124-
label: "Visualizer"
125-
}
122+
label: "Visualizer",
123+
},
126124
],
127125
},
128126
{
@@ -183,7 +181,7 @@ const config: Config = {
183181
items: [
184182
{
185183
label: "Discord",
186-
href: "https://discord.gg/83aXYxy9",
184+
href: "https://discord.gg/jm3WxeYT",
187185
},
188186
{
189187
label: "GitHub Discussions",
@@ -227,8 +225,9 @@ const config: Config = {
227225
],
228226
},
229227
],
230-
copyright: `Copyright © ${new Date().getFullYear()
231-
} <strong>Input Output Global</strong> <br/> <a href="https://static.iohk.io/terms/iog-privacy-policy.pdf" target="_blank" class="footer__link-item">Privacy Policy</a> | <a href="https://static.iohk.io/terms/iohktermsandconditions.pdf" target="_blank" class="footer__link-item">Terms & Conditions</a> <br/> <small>Built with Docusaurus</small>`,
228+
copyright: `Copyright © ${
229+
new Date().getFullYear()
230+
} <strong>Input Output Global</strong> <br/> <a href="https://static.iohk.io/terms/iog-privacy-policy.pdf" target="_blank" class="footer__link-item">Privacy Policy</a> | <a href="https://static.iohk.io/terms/iohktermsandconditions.pdf" target="_blank" class="footer__link-item">Terms & Conditions</a> <br/> <small>Built with Docusaurus</small>`,
232231
},
233232
prism: {
234233
theme: prismThemes.github,

0 commit comments

Comments
 (0)