-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathhotspots.ts
24 lines (22 loc) · 1.05 KB
/
hotspots.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import HotspotIcon from './cloudgate.svg'
import { MakerHotspot } from '../hotspotMakerTypes'
import ANTENNAS from './antennas'
const CloudGate = {
name: 'CloudGate Hotspot',
icon: HotspotIcon,
onboardType: 'QR',
onboardUrl: 'https://cloudgateuniverse.com/',
translations: {
en: {
diagnostic:
'<b><white>Diagnostic support allows CloudGate to identify issues with your Hotspot in a secure way.</white></b>\nCloudGate will never have access to private keys and will only ever be able to access your Hotspot and not any other devices on your Network.\n\nIf you would like to opt-out of diagnostic support please email <purple><b>[email protected]</b></purple> from the email used to purchase the Hotspot.',
power: [
'Attach the antenna and plug in the provided power adapter.',
'The CloudGate LEDs will light up once it’s powered on.',
],
externalOnboard: 'Visit the local management-console for QR-code',
},
},
antenna: { default: ANTENNAS.CLOUDGATE },
} as MakerHotspot
export default { CloudGate }