-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.gjs
34 lines (33 loc) · 1.11 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
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 TipJar from 'ember-phosphor-icons/components/ph-tip-jar';
import { t } from 'ember-intl';
export default class OpenToFiles extends Component {
<template>
<a
href='https://github.com/MichalBryxi/open-to-dot-dot-dot'
class='pr-6 text-gray-500 hover:text-black'
target='_blank'
>
<GitHubLogo class='inline' />
{{t 'footer.github'}}
</a>
<a
href='https://www.linkedin.com/posts/courtneysummer_desperate-opentowork-opentowork-activity-7241410975193513984-vexX?utm_source=share&utm_medium=member_desktop'
class='pr-6 text-gray-500 hover:text-black'
target='_blank'
>
<LinkedInLogo class='inline' />
{{t 'footer.linked-in'}}
</a>
<a
href='https://buymeacoffee.com/michalbryxi'
class='pr-6 text-gray-500 hover:text-black'
target='_blank'
>
<TipJar class='inline' />
{{t 'footer.tip-jar'}}
</a>
</template>
}