-
Notifications
You must be signed in to change notification settings - Fork 56
/
About.tsx
107 lines (102 loc) · 4.08 KB
/
About.tsx
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import React from "react";
import Container from "react-bootstrap/Container";
import { Helmet } from "react-helmet";
import styles from "./About.module.css";
type PropTypes = {
githubUrl: string;
genticsUrl: string;
};
const About = ({ githubUrl, genticsUrl }: PropTypes) => {
return (
<main className="pb-5">
<Helmet>
<title>About</title>
</Helmet>
<Container>
<div className={styles.aboutContent}>
<p>
The information provided by this website is based on a{" "}
<a href={githubUrl} target="_blank" rel="noopener noreferrer">
public Github repository
</a>{" "}
and collected by{" "}
<a href={genticsUrl} target="_blank" rel="noopener noreferrer">
Gentics
</a>
.
</p>
<p>
We are the company behind the headless CMS{" "}
<a
href="https://getmesh.io/"
target="_blank"
rel="noopener noreferrer"
>
Gentics Mesh
</a>
, so it's hard to call us unbiased - please take all information
with a grain of salt. However, we try to collect facts only here -
if you disagree with any of the information shown, please create
pull request!
</p>
<p>
This website is based on the great work of{" "}
<a
href="https://headlesscms.org/"
target="_blank"
rel="noopener noreferrer"
>
HeadlessCMS
</a>
, which worked as both an inspiration and a data source.
</p>
</div>
<h2>Imprint</h2>
<div className={styles.imprint}>
<pre>
{`
APA-IT Informations Technologie GmbH
Laimgrubengasse 10
1060 Vienna
Austria
Tel.: +43 1 36060-0
Fax: +43 1 36060-6099
E-Mail: [email protected]
Commercial register number: 195806a
Commercial register court: Handelsgericht Wien
VAT ID number: ATU53122400
Data registry number: 4012664
Member of the Austrian Federal Economic Chamber
Legal form: Limited liability company
© APA - Austria Press Agency eG. All rights reserved.
APA is a registered Austrian trademark and a European Community trademark.
`}
</pre>
<sub>
This website uses Google Analytics, a web analytic service provided
by Google Inc. ("Google"). Google Analytics uses so-called
"cookies", which are text files that are stored on your computer to
enable an analysis of the way you use this website. The information
generated by the cookie concerning your use of this website
(including your IP address) is transmitted to a Google server in the
USA and stored there. Google will use this information to analyse
your use of this website, to compile reports on website activities
for website operators and to provide additional services associated
with the website and internet use. If necessary, Google will also
pass this information on to third parties to the extent it is
prescribed by law or to the extent such third parties process the
data on Google's behalf. Under no circumstances will Google bring
your IP address into contact with other Google data. You can prevent
the installation of cookies through the appropriate configuration of
your browser software; however, we would like to point out that in
this case you will not be able to take full advantage of all of this
website's functions. By using this website you consent to the
processing of the data Google gathers about you in the manner and
for the purpose stated above.
</sub>
</div>
</Container>
</main>
);
};
export default About;