Skip to content

Commit 6971988

Browse files
mustafasoyluCopilot
andcommitted
feat: display version number in footer component
Co-authored-by: Copilot <copilot@github.com>
1 parent 4443659 commit 6971988

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/components/Footer.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Box, Flex, Link, Text, UnorderedList, ListItem } from "@chakra-ui/react";
22
import { FaLinkedin, FaMastodon, FaTwitter, FaEnvelope, FaGithub } from "react-icons/fa";
3+
import { version } from "../../package.json";
34

45
type IconType = "linkedin" | "mastodon" | "x" | "mattermost" | "mail";
56

@@ -65,12 +66,14 @@ const Footer = () => {
6566
Imprint
6667
</Link>
6768
</ListItem>
69+
6870
<ListItem>
6971
<Link href="mailto:m.soylu@fz-juelich.de" isExternal>
7072
Contact
7173
</Link>
7274
</ListItem>
7375
</UnorderedList>
76+
<Text>RDF Graph Visualization v{version}</Text>
7477
<Text>&copy; {new Date().getFullYear()} Forschungszentrum Jülich</Text>
7578
</Flex>
7679
</Flex>

0 commit comments

Comments
 (0)