From c3de8016c0ddf7c7d3036c985c1b0f5c0cd22a0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emil=20Sj=C3=B6lander?= Date: Tue, 13 Feb 2018 03:50:35 -0800 Subject: [PATCH] Move footer to only landing page Reviewed By: danielbuechele Differential Revision: D6968277 fbshipit-source-id: ec01d6e0de6a76ab9235378a1c1a29dcf7903ae3 --- website/src/components/Footer.css | 17 ----------------- website/src/components/Footer.js | 23 ----------------------- website/src/components/Page.js | 2 -- website/src/pages/index.css | 18 ++++++++++++++++++ website/src/pages/index.js | 10 ++++++++++ 5 files changed, 28 insertions(+), 42 deletions(-) delete mode 100644 website/src/components/Footer.css delete mode 100644 website/src/components/Footer.js diff --git a/website/src/components/Footer.css b/website/src/components/Footer.css deleted file mode 100644 index 2061559a..00000000 --- a/website/src/components/Footer.css +++ /dev/null @@ -1,17 +0,0 @@ -footer { - display: flex; - padding: 20px 15px; - padding-left: 87px; - z-index: 4; - align-items: center; - background-color: white; -} - -footer a { - margin: 0 15px; - color: #606770; -} - -footer a:hover { - color: #8FD0C6; -} diff --git a/website/src/components/Footer.js b/website/src/components/Footer.js deleted file mode 100644 index 9a44aa3c..00000000 --- a/website/src/components/Footer.js +++ /dev/null @@ -1,23 +0,0 @@ -/** - * Copyright (c) 2014-present, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. - * - * @flow - * @format - */ - -import React from 'react'; -import Link from 'gatsby-link'; -import './Footer.css'; - -export default () => ( - -); diff --git a/website/src/components/Page.js b/website/src/components/Page.js index 8cf386b9..1affdfe0 100644 --- a/website/src/components/Page.js +++ b/website/src/components/Page.js @@ -12,7 +12,6 @@ import React from 'react'; import Toolbar from './Toolbar'; -import Footer from './Footer'; import './Page.css'; require('prismjs/themes/prism.css'); @@ -29,6 +28,5 @@ export default (props: Props) => (
{props.children}
-