Skip to content

Commit ca76b7f

Browse files
author
Matthias Rütten
committed
Thanks section
1 parent 0bc862c commit ca76b7f

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

src/renderer/components/about-us/AboutUsPage.tsx

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,42 @@ import { remote, shell } from 'electron'
22
import * as React from 'react'
33
import { Box, Text } from 'rebass'
44

5-
const createIssue: React.MouseEventHandler<HTMLAnchorElement> = event => {
5+
const openUrl = (url: string): React.MouseEventHandler<HTMLAnchorElement> => event => {
66
event.preventDefault()
7-
shell.openExternal('https://github.com/codecentric/merge-request-notifier/issues/new')
7+
shell.openExternal(url)
88
}
99

1010
export const AboutUsPage = () => {
1111
const appVersion = remote.app.getVersion()
1212

1313
return (
1414
<Box p={2}>
15-
<Text>
15+
<Text fontSize='14px'>
1616
This app was build because our team was searching for a tool to see the number of our current open merge requests and make them easily
1717
accessible. We didn't found such a tool and so we decided to build one by our own ;-)
1818
</Text>
1919

20+
<Text mt={3} fontWeight='bold'>
21+
Thanks
22+
</Text>
23+
<Text fontSize='14px'>
24+
We want to thank our employers (
25+
<a href='#' onClick={openUrl('https://codecentric.de')}>
26+
codecentric
27+
</a>{' '}
28+
and{' '}
29+
<a href='#' onClick={openUrl('https://uxi.de')}>
30+
UX&I
31+
</a>
32+
) to make it possible to develop this app in our +1 time.
33+
</Text>
34+
2035
<Text mt={3} fontWeight='bold'>
2136
Issues / Feedback
2237
</Text>
23-
<Text>
38+
<Text fontSize='14px'>
2439
You found an issue or missed some feature? We are very keen about your feedback and appreciate any help. Please{' '}
25-
<a href='#' onClick={createIssue}>
40+
<a href='#' onClick={openUrl('https://github.com/codecentric/merge-request-notifier/issues/new')}>
2641
create an issue
2742
</a>{' '}
2843
on GitHub.

0 commit comments

Comments
 (0)