-
Notifications
You must be signed in to change notification settings - Fork 2
/
support.html
49 lines (41 loc) · 1.91 KB
/
support.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<html>
<head>
<title>XSplit JS Framework Support</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700italic,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/support.css">
<script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<script>
window.Polymer = window.Polymer || {};
window.Polymer.dom = 'shadow';
</script>
<link rel="import" href="polymer_elements/navbar/navbar.html">
<link rel="import" href="polymer_elements/copyright/copyright.html">
</head>
<body>
<xsplit-navbar></xsplit-navbar>
<div id="header">
Got questions? Need help?
</div>
<div id="container">
<h1> We got a number of ways for you to ask for help: </h1>
<span>We have an incredible community of developers who are passionate about solving problems. We recommend the following methods to get help with XSplit JS Framework.</span>
<div id="support-channels">
<a href="https://github.com/xjsframework/xjs/issues/new" class="support no-hover" target="_blank">
<div id="support-github">
<span class="support-first-line">ASK US QUESTIONS AT</span>
<span class="support-second-line">GITHUB</span>
</div>
</a>
<a href="https://discord.gg/UdynF68" class="support no-hover" target="_blank">
<div id="support-chat"><span class="support-first-line">CHAT US UP AT</span>
<span class="support-second-line">DISCORD</span>
</div>
</a>
</div>
<h1 id="found-bug"> Found some bug in our framework? </h1>
<span>Please do report that to us at <a href="https://github.com/xjsframework/xjs/issues/new" target="_blank">github</a>.<span>
</div>
<xsplit-copyright></xsplit-copyright>
</body>
</html>