Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the global footer #910

Merged
merged 9 commits into from
Oct 28, 2020
Merged
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"@emotion/styled": "^10.0.27",
"@mdx-js/mdx": "^1.6.17",
"@mdx-js/react": "^1.6.18",
"@newrelic/gatsby-theme-newrelic": "^1.10.3",
"@newrelic/gatsby-theme-newrelic": "^1.11.1",
"@splitsoftware/splitio-react": "^1.2.0",
"@xstate/react": "^1.0.1",
"classnames": "^2.2.6",
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

66 changes: 0 additions & 66 deletions src/components/Footer.js

This file was deleted.

69 changes: 0 additions & 69 deletions src/components/Footer.module.scss

This file was deleted.

18 changes: 0 additions & 18 deletions src/components/Logo.module.scss

This file was deleted.

7 changes: 5 additions & 2 deletions src/components/MobileHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@ import React, { useState } from 'react';
import PropTypes from 'prop-types';
import { css } from '@emotion/core';
import { Link } from 'gatsby';
import Logo from './Logo';
import Navigation from './Navigation';
import { HamburgerMenu, SearchInput } from '@newrelic/gatsby-theme-newrelic';
import {
Logo,
HamburgerMenu,
SearchInput,
} from '@newrelic/gatsby-theme-newrelic';

const MobileHeader = ({ className, isOpen, toggle }) => {
const [searchTerm, setSearchTerm] = useState('');
Expand Down
66 changes: 0 additions & 66 deletions src/components/NewRelicLogo.js

This file was deleted.

7 changes: 0 additions & 7 deletions src/components/NewRelicLogo.module.scss

This file was deleted.

3 changes: 1 addition & 2 deletions src/components/Sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ import React, { useState } from 'react';
import PropTypes from 'prop-types';
import { css } from '@emotion/core';
import { Link } from 'gatsby';
import Logo from './Logo';
import Navigation from './Navigation';
import { SearchInput } from '@newrelic/gatsby-theme-newrelic';
import { Logo, SearchInput } from '@newrelic/gatsby-theme-newrelic';

const Sidebar = ({ className }) => {
const [searchTerm, setSearchTerm] = useState('');
Expand Down
5 changes: 0 additions & 5 deletions src/components/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,4 @@ input[type='text'] {
margin-bottom: 0.5rem !important;
}
}

.site-container {
max-width: 1600px;
margin: 0 auto;
}
}
Loading