Skip to content

Instantly share code, notes, and snippets.

@kluu1
Last active March 23, 2020 21:43
Show Gist options
  • Select an option

  • Save kluu1/1ef67fbc7dcf34286edea51661042017 to your computer and use it in GitHub Desktop.

Select an option

Save kluu1/1ef67fbc7dcf34286edea51661042017 to your computer and use it in GitHub Desktop.
import { Menu, Container } from 'semantic-ui-react'
import Link from 'next/link'
function Header() {
return (
<Menu color="blue" inverted borderless>
<Container textAlign="left">
<Link href="/">
<Menu.Item style={{ paddingLeft: 0 }}>
<h1>Next Crypto Tracker</h1>
</Menu.Item>
</Link>
</Container>
</Menu>
)
}
export default Header
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment