Styling the links
// File: /packages/my-first-theme/src/components/index.js
// ...
const Menu = styled.nav`
display: flex;
flex-direction: row;
margin-top: 1em;
& > a {
margin-right: 1em;
color: steelblue;
text-decoration: none;
}
`// File: /packages/my-first-theme/src/components/index.js
// ...
<Header>
<HeaderContent>
<h1>Frontity Workshop</h1>
<p>Current URL: {state.router.link}</p>
<Menu>
<Link link="/">Home</Link>
<Link link="/page/2">More posts</Link>
<Link link="/about-us">About Us</Link>
</Menu>
</HeaderContent>
</Header>
// ...Last updated