From 93092a4855aa666953ca4a709d6f4b71e7357593 Mon Sep 17 00:00:00 2001 From: Kira Evans Date: Wed, 22 Sep 2021 09:54:20 -0700 Subject: [PATCH 1/8] add footer --- theme/src/components/App/App.tsx | 3 + theme/src/components/Footer.tsx | 87 ++++++++++++++++++++++++ theme/src/components/icons/GitHub.tsx | 6 +- theme/src/components/icons/ImageSC.tsx | 46 +++++++++++++ theme/src/components/icons/Twitter.tsx | 6 +- theme/src/components/icons/Zulip.tsx | 27 ++++++++ theme/src/components/icons/icons.type.ts | 4 ++ theme/src/components/icons/index.ts | 2 + theme/src/theme.js | 1 + 9 files changed, 176 insertions(+), 6 deletions(-) create mode 100644 theme/src/components/Footer.tsx create mode 100644 theme/src/components/icons/ImageSC.tsx create mode 100644 theme/src/components/icons/Zulip.tsx diff --git a/theme/src/components/App/App.tsx b/theme/src/components/App/App.tsx index 2fbce7335c..86894bfc04 100644 --- a/theme/src/components/App/App.tsx +++ b/theme/src/components/App/App.tsx @@ -4,6 +4,7 @@ import { useEffect, useRef } from 'react'; import slug from 'slug'; import { AppBar } from '@/components/AppBar'; +import { Footer } from '@/components/Footer'; import { Media } from '@/components/media'; import { GlobalTableOfContents, @@ -169,6 +170,8 @@ export function App() {
+ +