diff --git a/src/theme/Layout/index.js b/src/theme/Layout/index.js new file mode 100644 index 00000000..369203e5 --- /dev/null +++ b/src/theme/Layout/index.js @@ -0,0 +1,20 @@ +import React from 'react'; +import OriginalLayout from '@theme-original/Layout'; +import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; +// import styles from './styles.module.css'; // Optionally, add custom CSS + +export default function Layout(props) { + const {siteConfig} = useDocusaurusContext(); + return ( + + {/* Add your banner image below the navbar */} +
+ Banner +
+ {props.children} +
+ ); +} diff --git a/static/img/banner.avif b/static/img/banner.avif new file mode 100644 index 00000000..1af49cd5 Binary files /dev/null and b/static/img/banner.avif differ