We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56bc54a commit 9e94ce8Copy full SHA for 9e94ce8
src/components/Footer.tsx
@@ -1,6 +1,8 @@
1
import { Flex, Link, Text } from "@chakra-ui/react";
2
import { Logotype } from "./Logotype";
3
4
+let currentYear = new Date().getFullYear();
5
+
6
function Footer() {
7
return (
8
<Flex as="footer" bg="dark" mt="24px" h="300px">
@@ -15,8 +17,8 @@ function Footer() {
15
17
<Link href="/">
16
18
<Logotype color="light" height="75px" />
19
</Link>
20
+ <Text fontFamily="heading" fontSize="16px">© powdr labs GmbH 2023-{currentYear}. All Rights Reserved.</Text>
21
<Flex gap="4" fontFamily="heading" fontSize="16px">
- <Text>Powdr-2023</Text>
22
<Link href="/impressum">Impressum</Link>
23
<Link href="/privacy-policy">Privacy Policy</Link>
24
</Flex>
0 commit comments