-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.html
More file actions
56 lines (53 loc) · 2.81 KB
/
support.html
File metadata and controls
56 lines (53 loc) · 2.81 KB
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
50
51
52
53
54
55
56
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Support - Figra</title>
<link rel="icon" href="./assets/figra-icon-32.png" type="image/png">
<style>
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;max-width:960px;margin:40px auto;padding:0 16px;line-height:1.7}
.card{border:1px solid #ddd;border-radius:14px;padding:18px;margin:16px 0}
a{color:inherit}
code{background:#f6f6f6;padding:2px 6px;border-radius:6px}
</style>
</head>
<style>
.nav-menu{position:fixed;top:14px;right:16px;z-index:200}
.nav-dots{background:#1a1a2e;border:none;color:#fff;font-size:1.3rem;cursor:pointer;padding:4px 10px;border-radius:8px;line-height:1;letter-spacing:2px}
.nav-dots:hover{background:#0f3460}
.nav-dropdown{display:none;position:absolute;right:0;top:40px;background:#fff;border-radius:10px;box-shadow:0 8px 30px rgba(0,0,0,0.18);min-width:180px;overflow:hidden;border:1px solid #eee}
.nav-dropdown.open{display:block}
.nav-dropdown a{display:block;padding:11px 18px;color:#1a1a2e;text-decoration:none;font-size:0.9rem;border-bottom:1px solid #f0f0f0}
.nav-dropdown a:last-child{border-bottom:none}
.nav-dropdown a:hover{background:#f5f8ff;color:#4C78A8}
</style>
<div class="nav-menu">
<button class="nav-dots" onclick="document.getElementById('navDropdown').classList.toggle('open')" aria-label="Menu">⋮</button>
<div class="nav-dropdown" id="navDropdown">
<a href="./index.html">Home</a>
<a href="./news.html">Developer Notes</a>
<a href="./support.html">Support</a>
<a href="./issues.html">Known Issues</a>
<a href="./packages.html">R Packages</a>
<a href="./terms.html">Terms of Use</a>
<a href="./privacy.html">Privacy Policy</a>
<a href="./donate.html">Donate</a>
</div>
</div>
<script>document.addEventListener('click',function(e){if(!e.target.closest('.nav-menu'))document.getElementById('navDropdown').classList.remove('open')});</script>
<body>
<h1>Support</h1>
<div class="card">
<h2>Contact</h2>
<p>For help, bug reports, or feature requests, please use our support form:</p>
<p><a href="https://docs.google.com/forms/d/e/1FAIpQLSeP2O069QoXC3fGLp7Js073qYzvi-iXepwbB8fvlCa554aSpw/viewform" target="_blank" style="display:inline-block; padding:10px 20px; background:#4C78A8; color:#fff; text-decoration:none; border-radius:6px;">Open Support Form</a></p>
</div>
<div class="card">
<h2>Known Issues & Q&A</h2>
<p>Check known issues and resolved questions before submitting a new request:</p>
<p><a href="./issues.html" style="display:inline-block; padding:10px 20px; background:#0f3460; color:#fff; text-decoration:none; border-radius:6px;">View Known Issues</a></p>
</div>
<p><a href="./index.html">Back</a></p>
</body>
</html>