Skip to content

Commit b1b681c

Browse files
committed
feat: add data protection
1 parent c2cf81c commit b1b681c

File tree

7 files changed

+411
-0
lines changed

7 files changed

+411
-0
lines changed

content/data/pages/data-protection.de.mdx

+392
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Data protection
3+
description: Data protection declaration of openscript Ltd. website.
4+
type: content
5+
---
6+
7+
# Data protection declaration
8+
9+
Please consult our data protection declaration in German [here](/datenschutz).

content/i18n/de-CH.json

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"language": "Deutsch",
66
"menu.backToTheFuture": "Die Vergangenheit können wir nicht ändern, aber die Zukunft.",
77
"menu.collaboration": "Zusammenarbeit",
8+
"menu.data-protection": "Datenschutz",
89
"menu.formation": "Entstehung",
910
"menu.future": "Zukunft",
1011
"menu.imprint": "Impressum",

content/i18n/en-US.json

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"language": "English",
66
"menu.backToTheFuture": "We cannot change the history, but we can change the future.",
77
"menu.collaboration": "Collaboration",
8+
"menu.data-protection": "Data protection",
89
"menu.formation": "Formation",
910
"menu.future": "Future",
1011
"menu.imprint": "Imprint",

gatsby-config.ts

+1
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ const configuration: GatsbyConfig = {
129129
'/future/collaboration': '/zukunft/zusammenarbeit',
130130
'/future/participation': '/zukunft/mitarbeit',
131131
'/imprint': '/impressum',
132+
'/data-protection': '/datenschutz',
132133
},
133134
messages: deCHMessages,
134135
},

graphql-types.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/* eslint-disable */
22

3+
/* prettier-ignore */
4+
35
/* THIS FILE IS AUTOGENERATED. CHANGES WILL BE LOST ON SUBSEQUENT RUNS. */
46

57
declare namespace Queries {

src/layouts/default/Footer.tsx

+5
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ export function Footer({ address, phone, email }: FooterProps) {
8787
<FormattedMessage id="menu.imprint" />
8888
</LocalizedLink>
8989
</li>
90+
<li>
91+
<LocalizedLink to="/data-protection">
92+
<FormattedMessage id="menu.data-protection" />
93+
</LocalizedLink>
94+
</li>
9095
</ul>
9196
<ul className="social-media">
9297
<li>

0 commit comments

Comments
 (0)