-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.gjs
80 lines (75 loc) · 2.9 KB
/
index.gjs
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
73
74
75
76
77
78
79
80
import Component from '@glimmer/component';
import GitHubLogo from 'ember-phosphor-icons/components/ph-github-logo';
import LinkedInLogo from 'ember-phosphor-icons/components/ph-linkedin-logo';
import Mailbox from 'ember-phosphor-icons/components/ph-mailbox';
import TipJar from 'ember-phosphor-icons/components/ph-tip-jar';
import Stamp from 'ember-phosphor-icons/components/ph-stamp';
import UserCheck from 'ember-phosphor-icons/components/ph-user-check';
import Chat from 'ember-phosphor-icons/components/ph-chat-centered-dots';
import Coins from 'ember-phosphor-icons/components/ph-coins';
import Detective from 'ember-phosphor-icons/components/ph-detective';
import AboutItem from './item';
import { inject as service } from '@ember/service';
export default class About extends Component {
@service intl;
get items() {
return [
{
label: this.intl.t('about.idea.label'),
icon: Chat,
description: this.intl.t('about.idea.description'),
},
{
label: this.intl.t('about.pricing.label'),
icon: Coins,
description: this.intl.t('about.pricing.description'),
},
{
label: this.intl.t('about.privacy.label'),
icon: Detective,
description: this.intl.t('about.privacy.description'),
},
{
href: 'https://www.linkedin.com/posts/courtneysummer_desperate-opentowork-opentowork-activity-7241410975193513984-vexX?utm_source=share&utm_medium=member_desktop',
label: this.intl.t('about.original.label'),
icon: UserCheck,
description: this.intl.t('about.original.description'),
},
{
href: 'mailto:michal.bryxi@gmail.com?subject=%23OpenTo...%20feedback&body=Hello%20there%2C%0A%0AI%20wanted%20to%20let%20you%20know%20that%20%23OpenTo...%20%5Byour%20text%20here%5D.%0A%0AHave%20a%20nice%20day!',
label: this.intl.t('about.feedback.label'),
icon: Mailbox,
description: this.intl.t('about.feedback.description'),
},
{
href: 'https://buymeacoffee.com/michalbryxi',
label: this.intl.t('about.buy-me-a-coffee.label'),
icon: TipJar,
description: this.intl.t('about.buy-me-a-coffee.description'),
},
{
href: 'https://github.com/MichalBryxi/open-to-dot-dot-dot',
label: this.intl.t('about.github.label'),
icon: GitHubLogo,
description: this.intl.t('about.github.description'),
},
{
href: 'https://opensource.org/license/MIT',
label: this.intl.t('about.license.label'),
icon: Stamp,
description: this.intl.t('about.license.description'),
},
];
}
<template>
<div class='px-4 py-5 sm:px-6'>
<div class='mt-6 border-t border-gray-100'>
<dl class='divide-y divide-gray-100'>
{{#each this.items as |item|}}
<AboutItem @item={{item}} />
{{/each}}
</dl>
</div>
</div>
</template>
}