Portfolio website written with Next.js
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wychdev-nextjs/components/header.tsx

29 lines
456 B

2 years ago
import styled from 'styled-components'
2 years ago
import Nav from './nav'
2 years ago
const Header = styled.header`
display: flex;
align-items: center;
2 years ago
border-bottom: var(--border-size) var(--border-type) var(--border-color);
padding: var(--v-uni-padding) var(--h-uni-padding);
h1 {
font-size: 2rem;
font-weight: normal;
}
nav {
margin-left: auto;
float: right;
}
2 years ago
`
export default () => {
return (
<Header>
<h1>wych.dev</h1>
2 years ago
<Nav />
2 years ago
</Header>
)
}