diff --git a/src/components/header.js b/src/components/header.js index bcb0466a..5828752b 100644 --- a/src/components/header.js +++ b/src/components/header.js @@ -21,7 +21,7 @@ function Header({ siteTitle, siteDescription, siteUrl }) {
diff --git a/src/pages/index.js b/src/pages/index.js
index 54059752..134b94e8 100644
--- a/src/pages/index.js
+++ b/src/pages/index.js
@@ -7,6 +7,12 @@ import Layout from '../components/layout';
import Person from '../components/Person';
import Topics from '../components/Topics';
+const BackToTopLink = styled.a`
+ position: fixed;
+ bottom: 10px;
+ right: 10px;
+`;
+
function IndexPage() {
const { currentTag } = useContext(FilterContext);
const { allPerson } = useStaticQuery(graphql`
@@ -43,6 +49,7 @@ function IndexPage() {