diff options
| -rw-r--r-- | docs/src/theme/Footer/index.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/src/theme/Footer/index.js b/docs/src/theme/Footer/index.js new file mode 100644 index 00000000..afa2d4b3 --- /dev/null +++ b/docs/src/theme/Footer/index.js @@ -0,0 +1,11 @@ +import React from 'react'; +import Footer from '@theme-original/Footer'; + +export default function FooterWrapper(props) { + return ( + <> + <Footer {...props} /> + <script defer data-domain="atuin.sh" src="https://plausible.io/js/script.js"></script> + </> + ); +} |
