forked from Northgate-Systems/RemitX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.tsx
More file actions
72 lines (66 loc) · 3.28 KB
/
Copy pathpage.tsx
File metadata and controls
72 lines (66 loc) · 3.28 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import { Mail, ShieldAlert, FileText, Github, MapPin } from "lucide-react";
export default function SupportPage() {
return (
<main className="min-h-screen bg-gray-50/50">
<div className="max-w-3xl mx-auto px-4 lg:px-6 py-6 lg:py-8 space-y-4">
<div>
<h2 className="text-xl lg:text-2xl font-bold text-primary mb-1">Support</h2>
<p className="text-sm text-gray-500">RemitX is on Stellar testnet - here's where to go if something's wrong.</p>
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 gap-3">
<a
href="https://github.com/Northgate-Systems/RemitX/issues"
target="_blank"
rel="noreferrer"
className="bg-white border border-gray-200 rounded-xl p-5 flex items-start gap-3 hover:shadow-md transition-all"
>
<Github size={20} className="text-primary shrink-0 mt-0.5" />
<div>
<p className="text-sm font-bold text-gray-800">Report an issue</p>
<p className="text-xs text-gray-500 mt-1">File a bug on the RemitX GitHub repository.</p>
</div>
</a>
<a
href="mailto:bidifortune@gmail.com"
className="bg-white border border-gray-200 rounded-xl p-5 flex items-start gap-3 hover:shadow-md transition-all"
>
<Mail size={20} className="text-primary shrink-0 mt-0.5" />
<div>
<p className="text-sm font-bold text-gray-800">Email the team</p>
<p className="text-xs text-gray-500 mt-1">Questions about a transaction, an anchor listing, or the project.</p>
</div>
</a>
<div className="bg-white border border-gray-200 rounded-xl p-5 flex items-start gap-3">
<ShieldAlert size={20} className="text-amber-500 shrink-0 mt-0.5" />
<div>
<p className="text-sm font-bold text-gray-800">Testnet only</p>
<p className="text-xs text-gray-500 mt-1">
All funds and transactions here are on Stellar testnet. Never send real assets or reuse a mainnet secret key.
</p>
</div>
</div>
<div className="bg-white border border-gray-200 rounded-xl p-5 flex items-start gap-3">
<FileText size={20} className="text-primary shrink-0 mt-0.5" />
<div>
<p className="text-sm font-bold text-gray-800">How sending works</p>
<p className="text-xs text-gray-500 mt-1">
Activate a wallet on the Dashboard, then Send builds a Stellar path payment, Review signs and submits it, and Activity tracks it to confirmation.
</p>
</div>
</div>
<div className="bg-white border border-gray-200 rounded-xl p-5 flex items-start gap-3 sm:col-span-2">
<MapPin size={20} className="text-primary shrink-0 mt-0.5" />
<div>
<p className="text-sm font-bold text-gray-800">Registered Office</p>
<p className="text-xs text-gray-500 mt-1 leading-relaxed">
RemitX Technologies Ltd.<br />
14B Admiralty Way, Lekki Phase 1,<br />
Lagos 105102, Nigeria
</p>
</div>
</div>
</div>
</div>
</main>
);
}