-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from powdr-labs/legal
Add impressum, privacy policy, copyright notice
- Loading branch information
Showing
5 changed files
with
548 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { Flex, Link, Text } from "@chakra-ui/react"; | ||
import { Logotype } from "./Logotype"; | ||
|
||
let currentYear = new Date().getFullYear(); | ||
|
||
function Footer() { | ||
return ( | ||
<Flex as="footer" bg="dark" mt="24px" h="300px"> | ||
<Flex | ||
flexDir="column" | ||
flexGrow="1" | ||
justifyContent="center" | ||
alignItems="center" | ||
color="light" | ||
overflow="hidden" | ||
> | ||
<Link href="/"> | ||
<Logotype color="light" height="75px" /> | ||
</Link> | ||
<Text fontFamily="heading" fontSize="16px">© powdr labs GmbH 2023-{currentYear}. All Rights Reserved.</Text> | ||
<Flex gap="4" fontFamily="heading" fontSize="16px"> | ||
<Link href="/impressum">Impressum</Link> | ||
<Link href="/privacy-policy">Privacy Policy</Link> | ||
</Flex> | ||
</Flex> | ||
</Flex> | ||
); | ||
} | ||
|
||
export default Footer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import Footer from "@/components/Footer"; | ||
import Head from "next/head"; | ||
import { Flex, Heading, Text, Box, Stack } from "@chakra-ui/react"; | ||
|
||
export default function Impressum() { | ||
return ( | ||
<> | ||
<Head> | ||
<title>Impressum</title> | ||
<meta name="description" content="Impressum" /> | ||
</Head> | ||
<Flex direction="column" minHeight="100vh"> | ||
<Flex as="main" direction="column" flex="1" w="100%" bg="light"> | ||
<Box maxWidth="800px" margin="0 auto" padding="20px"> | ||
<Heading as="h1" textAlign="center" marginBottom="20px"> | ||
Impressum | ||
</Heading> | ||
<Stack textAlign="left" spacing="20px"> | ||
<Text> | ||
<strong>powdr labs GmbH</strong> | ||
<br /> | ||
Fichtestr, 32 | ||
<br /> | ||
10967 Berlin | ||
<br /> | ||
Handelsregister: HRB260037B | ||
<br /> | ||
Registergericht: Charlottenburg | ||
</Text> | ||
<Text> | ||
<strong>Vertreten durch:</strong> | ||
<br /> | ||
Leonardo de Sá Alt | ||
<br /> | ||
Thibaut Schaeffer | ||
</Text> | ||
<Text> | ||
<strong>Kontakt</strong> | ||
<br /> | ||
E-Mail: [email protected] | ||
</Text> | ||
<Text> | ||
<strong> | ||
Verbraucher­streit­beilegung/Universal­schlichtungs­stelle | ||
</strong> | ||
<br /> | ||
Wir sind nicht bereit oder verpflichtet, an | ||
Streitbeilegungsverfahren vor einer | ||
Verbraucherschlichtungsstelle teilzunehmen. | ||
</Text> | ||
</Stack> | ||
</Box> | ||
</Flex> | ||
<Footer /> | ||
</Flex> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.