sync, too many changes to list out

This commit is contained in:
41666 2019-03-18 04:52:54 -05:00
parent 3ba5bdb999
commit 6413d7c642
14 changed files with 469 additions and 32 deletions

View file

@ -1,11 +1,25 @@
// @flow
import * as React from 'react'
import HeaderBarCommon, { Logotype } from './common'
import HeaderBarCommon, { Logotype, type CommonProps } from './common'
import styled from 'styled-components'
import Link from 'next/link'
const HeaderBarUnauth: React.StatelessFunctionalComponent<{}> = () => (
<HeaderBarCommon>
const LogoBox = styled.a`
flex: 1;
display: flex;
align-items: center;
justify-content: flex-start;
cursor: pointer;
`
const HeaderBarUnauth: React.StatelessFunctionalComponent<CommonProps> = (props) => (
<HeaderBarCommon {...props}>
<>
<Logotype />
<Link href='/' prefetch>
<LogoBox>
<Logotype />
</LogoBox>
</Link>
Hey stranger.
</>
</HeaderBarCommon>