diff --git a/components/Docs.tsx b/components/Docs.tsx index 848b354..775ba99 100644 --- a/components/Docs.tsx +++ b/components/Docs.tsx @@ -1,9 +1,11 @@ import Container from '@components/Container' import Wave from '@components/Wave' +import SEO from './SEO' -const Docs = ({ header, description, subheader, children }: DocsProps): JSX.Element => { +const Docs = ({ title, header, description, subheader, children }: DocsProps): JSX.Element => { return ( <> +

@@ -32,6 +34,7 @@ export default Docs interface DocsProps { header: string | JSX.Element + title?: string description?: string subheader?: string children: JSX.Element | JSX.Element[]