import React from 'react';
import { Link } from 'react-router';
import { prefixLink } from 'gatsby-helpers';
import { config } from 'config';
import SiteNav from '../SiteNav';
import SiteLinks from '../SiteLinks';
import './style.css';
import profilePic from '../../pages/photo.jpg';
class SiteSidebar extends React.Component {
render() {
const { location } = this.props;
const isHome = location.pathname === prefixLink('/');
/* eslint-disable jsx-a11y/img-redundant-alt*/
const header = (
{config.siteDescr}
{config.siteAuthor}
) :
{config.siteAuthor}
}