diff --git a/apps/docs/components/Footer.tsx b/apps/docs/components/Footer.tsx
new file mode 100644
index 00000000..55c9bd25
--- /dev/null
+++ b/apps/docs/components/Footer.tsx
@@ -0,0 +1,79 @@
+import Image from 'next/image';
+import { useTheme } from 'nextra-theme-docs';
+import React from 'react';
+import logoNsf from './logo-nsf.png';
+import logoUofU from './logo-uofu.png';
+import logoVdl from './logo-vdl.png';
+
+export function Footer() {
+ const theme = useTheme();
+ const mode = theme.resolvedTheme || 'dark';
+
+ return (
+
+
+
+ Copyright ©{new Date().getFullYear()}{' '}
+ {
+
+ The Trrack Team
+
+ }
+ . All content on this website is licensed under the Creative Commons
+ Attribution license (CC BY).
+
+
+ );
+}
diff --git a/apps/docs/components/logo-nsf.png b/apps/docs/components/logo-nsf.png
new file mode 100644
index 00000000..f02e34da
Binary files /dev/null and b/apps/docs/components/logo-nsf.png differ
diff --git a/apps/docs/components/logo-uofu.png b/apps/docs/components/logo-uofu.png
new file mode 100644
index 00000000..bd1b20b5
Binary files /dev/null and b/apps/docs/components/logo-uofu.png differ
diff --git a/apps/docs/components/logo-vdl.png b/apps/docs/components/logo-vdl.png
new file mode 100644
index 00000000..8a6849e5
Binary files /dev/null and b/apps/docs/components/logo-vdl.png differ
diff --git a/apps/docs/components/png.d.ts b/apps/docs/components/png.d.ts
new file mode 100644
index 00000000..e2937d47
--- /dev/null
+++ b/apps/docs/components/png.d.ts
@@ -0,0 +1 @@
+declare module '*.png';
diff --git a/apps/docs/pages/about.mdx b/apps/docs/pages/about.mdx
index 21e4ec46..809898d2 100644
--- a/apps/docs/pages/about.mdx
+++ b/apps/docs/pages/about.mdx
@@ -1,6 +1,6 @@
## Team
-Currently the project is maintained by [Kiran Gadhave](https://www.kirangadhave.me/), [Zach Cutler](https://vdl.sci.utah.edu/team/zcutler/) and [Dr. Alexander Lex](https://vdl.sci.utah.edu/team/lex/).
+Currently the project is maintained by [Kiran Gadhave](https://www.kirangadhave.me/), [Zach Cutler](https://vdl.sci.utah.edu/team/zcutler/) and [Dr. Alexander Lex](https://vdl.sci.utah.edu/team/lex/) as part of [Visualization Design Lab (VDL)](https://vdl.sci.utah.edu/). VDL is part of the [ Scientific Computing and Imaging Institute ](https://www.sci.utah.edu/) and the [ Kahlert School of Computing ](https://www.cs.utah.edu/).
## Publication
diff --git a/apps/docs/public/assets/logo-uofu.png b/apps/docs/public/assets/logo-uofu.png
new file mode 100644
index 00000000..bd1b20b5
Binary files /dev/null and b/apps/docs/public/assets/logo-uofu.png differ
diff --git a/apps/docs/public/assets/logo-vdl.png b/apps/docs/public/assets/logo-vdl.png
new file mode 100644
index 00000000..8a6849e5
Binary files /dev/null and b/apps/docs/public/assets/logo-vdl.png differ
diff --git a/apps/docs/theme.config.jsx b/apps/docs/theme.config.jsx
index 4fbc21a6..1c7bcd03 100644
--- a/apps/docs/theme.config.jsx
+++ b/apps/docs/theme.config.jsx
@@ -1,5 +1,6 @@
import { useRouter } from 'next/router';
+import { Footer } from './components/Footer';
import styles from './pages/index.module.css';
const theme = {
@@ -48,15 +49,7 @@ const theme = {
),
},
footer: {
- text: (
-
- BSD 3 {new Date().getFullYear()} ©{' '}
-
- The Trrack Team
-
- .
-
- ),
+ text: Footer,
},
};