diff --git a/src/components/contact/IrcCard.tsx b/src/components/contact/IrcCard.tsx deleted file mode 100644 index 0fe2ea32..00000000 --- a/src/components/contact/IrcCard.tsx +++ /dev/null @@ -1,74 +0,0 @@ -import React from 'react'; - -import './ContactCard.scss'; - -const IrcCard = () => ( -
-
-

IRC

-
-
- The official Matrix rooms are also bridged from Matrix to Libera.chat for - convenience. -
- NOTE: Matrix is the preferred chat platform. IRC is generally not recommended due to a lack of - features and moderation controls. -
-
-
-
-

General Channels

- -
-
-

Development Channels

- -
-
-
-
-
-); - -export default IrcCard; diff --git a/src/pages/contact.tsx b/src/pages/contact.tsx index db877cad..574be88d 100644 --- a/src/pages/contact.tsx +++ b/src/pages/contact.tsx @@ -1,16 +1,13 @@ import Layout from '@theme/Layout'; -import React, { useState } from 'react'; +import React from 'react'; import DiscordCard from '../components/contact/DiscordCard'; -import IrcCard from '../components/contact/IrcCard'; import MatrixCard from '../components/contact/MatrixCard'; import ForumCard from '../components/contact/ForumCard'; import TwitterCard from '../components/contact/TwitterCard'; import MastodonCard from '../components/contact/MastodonCard'; export default function Contact() { - const [isOtherChatVisible, setOtherChatVisible] = useState(false); - return (

Contact

@@ -30,25 +27,6 @@ export default function Contact() { -
-
- -
-
- {isOtherChatVisible && ( -
-
- -
-
- )}

Social