Skip to content

Commit

Permalink
feat: add a contact page (#16)
Browse files Browse the repository at this point in the history
* Adding a contact page on the website

* Changed text after Vijay's comments
  • Loading branch information
cedricroijakkers authored May 20, 2022
1 parent 93d297a commit 9c7567d
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,8 @@ yarn-error.log*
!.vscode/extensions.json
*.code-workspace

# JetBrains IDEs
.idea

# Local History for Visual Studio Code
.history/
45 changes: 45 additions & 0 deletions pages/contact.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
import Head from "components/Head";
import Layout from "components/Layout";
import Section from "components/Section";
import React from "react";

type Props = {};

const Contact = (props: Props) => {
return (
<Layout>
<Head title='Ferdium | Contact and support' />
<Section>
<div>
<div>
<h1>Contact and support</h1>
</div>

<h3>
<strong>Having issues with Ferdium? We can help you out!</strong>
</h3>
<p>
Ferdium, like any open source project, is maintained by a bunch of volunteers. If
you are having some issues with the software, you can always try to contact the team.
The easiest way to do this, is by <a href="https://discord.gg/xqA9vTP6">joining our Discord server</a>.
</p>
<p>
If you have found a bug in the Ferdium application itself, or have an idea for a possible
improvement, open an issue on the <a href="https://github.com/ferdium/ferdium-app/issues">GitHub
bug tracker</a>. When doing so, be sure to follow the guidelines in the description of the new
issue when creating it. In case of any questions, come and chat in <a href="https://discord.gg/xqA9vTP6">Discord</a>
and we&apos;ll gladly help you.
</p>
<p>
If you wish to participate in the Ferdium project, you are always welcome to join. We can use help
in the areas of application development, website design and development, or even just people willing to
test Ferdium and report issues they&apos;ve found. You are free to create a <a href="https://github.com/ferdium/ferdium-app/pulls">pull
request on GitHub</a> and we will evaluate it.
</p>
</div>
</Section>
</Layout>
);
};

export default Contact;

0 comments on commit 9c7567d

Please sign in to comment.