Skip to content

Commit

Permalink
update contact email
Browse files Browse the repository at this point in the history
  • Loading branch information
its-felix committed May 11, 2024
1 parent 8a5f484 commit 5877e32
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ui/src/components/contact/contact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ import React from 'react';
import { Copy } from '../common/copy';
import { KeyValuePairs, ValueWithLabel } from '../common/key-value-pairs';

const EMAIL = '[email protected]';

export function Contact() {
return (
<KeyValuePairs columns={1}>
<ValueWithLabel label={'E-Mail'}>
<Box>Send us an E-Mail at <Copy copyText={'[email protected]'}><Link href={'mailto:[email protected]'} external={true}>[email protected]</Link></Copy></Box>
<Box>Send us an E-Mail at <Copy copyText={EMAIL}><Link href={`mailto:${EMAIL}`} external={true}>{EMAIL}</Link></Copy></Box>
</ValueWithLabel>
</KeyValuePairs>
);
Expand Down

0 comments on commit 5877e32

Please sign in to comment.