diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2023-04-15 18:04:19 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-15 18:04:19 +0100 |
| commit | 512a6bda9cbbaac3a64cd1e86cc9e5c0402ffb61 (patch) | |
| tree | e3c545dc57924f73c587242315552aebd93f563f /docs/src/theme/Footer/index.js | |
| parent | Avoid accidentally deleting all history, but allow it if intended (#878) (diff) | |
| download | atuin-512a6bda9cbbaac3a64cd1e86cc9e5c0402ffb61.zip | |
Add footer (#879)
Diffstat (limited to 'docs/src/theme/Footer/index.js')
| -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> + </> + ); +} |
