// @flow import * as React from 'react'; import Link from 'next/link'; import { Container, ButtonRowContainer, Label, LogoLink } from './style'; import { PrimaryButton, GhostButton } from '../Button'; import Logo from './Logo'; type Props = { showHeaderShadow: boolean, }; export default function Header(props: Props) { const { showHeaderShadow } = props; return (
About Contribute
); }