Skip to content

Commit

Permalink
add support page
Browse files Browse the repository at this point in the history
  • Loading branch information
JackuB committed Nov 10, 2023
1 parent e997983 commit d743346
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 0 deletions.
3 changes: 3 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
content="mermaid, slack, diagram, chart, flowchart, sequence, gantt, class, state, git, graph, cli, command line, slack app, slackbot, slack command, slack slash command, slack integration, slack app directory, slack app store, slack app marketplace, slack app review"
/>
<meta name="slack-app-id" content="A05P92WP51V" />
<link rel="canonical" href="https://mermaid-for-slack.com" />
<style>
*,
*::before,
Expand Down Expand Up @@ -100,6 +101,8 @@ <h1>Mermaid for Slack</h1>
<a href="public/privacy-policy.html">Privacy Policy</a>
|
<a href="public/tos.html">Terms of Service</a>
|
<a href="public/support.html">Support</a>
</footer>
</body>
</html>
74 changes: 74 additions & 0 deletions public/support.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mermaid for Slack</title>
<meta
name="description"
content="Create Mermaid diagrams and charts in Slack"
/>
<meta
name="keywords"
content="mermaid, slack, diagram, chart, flowchart, sequence, gantt, class, state, git, graph, cli, command line, slack app, slackbot, slack command, slack slash command, slack integration, slack app directory, slack app store, slack app marketplace, slack app review"
/>
<meta name="slack-app-id" content="A05P92WP51V" />
<style>
*,
*::before,
*::after {
box-sizing: border-box;
}

body {
font-family: palatino, serif;
line-height: 1.5;
}

main {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
min-height: 100vh;
min-height: calc(100vh - 100px);
padding: 0 20px;
max-width: 800px;
margin: 0 auto;
}
.intro {
min-width: 300px;
padding: 80px;
}
footer {
text-align: center;
margin-top: 20px;
padding: 10px;
}
</style>
</head>
<body>
<main>
<div class="intro">
<h1>Mermaid for Slack Support</h1>
<p>
To get support, reach out to
<a href="mailto:[email protected]"
>[email protected]</a
>
or use
<a href="https://github.com/JackuB/mermaid-for-slack/issues"
>our GitHub Issues</a
>.
</p>
</div>
</main>
<footer>
<a href="https://mermaid-for-slack.com">Home</a>
|
<a href="https://github.com/JackuB/mermaid-for-slack"
>Source code on GitHub</a
>
</footer>
</body>
</html>

0 comments on commit d743346

Please sign in to comment.