diff --git a/components/Footer.tsx b/components/Footer.tsx new file mode 100644 index 0000000..01840f5 --- /dev/null +++ b/components/Footer.tsx @@ -0,0 +1,43 @@ +import * as React from 'react' +import { FaTwitter, FaGithub, FaLinkedin } from 'react-icons/fa' + +import styles from './styles.module.css' + +export const Footer: React.FC<{}> = () => { + return ( + + ) +} diff --git a/components/NotionPage.tsx b/components/NotionPage.tsx index ea9f27a..4a55a89 100644 --- a/components/NotionPage.tsx +++ b/components/NotionPage.tsx @@ -22,6 +22,7 @@ import { CustomHtml } from './CustomHtml' import { Loading } from './Loading' import { Page404 } from './Page404' import { PageHead } from './PageHead' +import { Footer } from './Footer' import styles from './styles.module.css' @@ -138,6 +139,7 @@ export const NotionPage: React.FC = ({ mapPageUrl={siteMapPageUrl} mapImageUrl={mapNotionImageUrl} searchNotion={searchNotion} + footer={