* update to eslint 6.8.0 and related packages * Fixes for no-prototype-builtins * Updates for explicit-function-return-type * Add ignores for no-explicit-any * update to eslint 6.8.0 and related packages * Fixes for no-prototype-builtins * Updates for explicit-function-return-type * Add ignores for no-explicit-any * package: activate eslint-config-standard * apply updated eslint configuration * lint: apply eslint feedback after rebase * Update lockfile * Update lockfile * Restore missing deps * Update lockfile * Re-add eslint-plugin-node * Add eslint-plugin-standard and eslint-plugin-react-hooks * Clean lint Co-authored-by: Paul Melnikow <github@paulmelnikow.com>
27 lines
554 B
TypeScript
27 lines
554 B
TypeScript
import { Link } from 'gatsby'
|
|
import React from 'react'
|
|
import styled from 'styled-components'
|
|
import Logo from '../images/logo.svg'
|
|
import { VerticalSpace } from './common'
|
|
|
|
const Highlights = styled.p`
|
|
font-style: italic;
|
|
`
|
|
|
|
export default function Header(): JSX.Element {
|
|
return (
|
|
<section>
|
|
<Link to="/">
|
|
<Logo />
|
|
</Link>
|
|
|
|
<VerticalSpace />
|
|
|
|
<Highlights>
|
|
Pixel-perfect Retina-ready Fast Consistent
|
|
Hackable No tracking
|
|
</Highlights>
|
|
</section>
|
|
)
|
|
}
|