-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
77 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |