|
|
@ -2,11 +2,14 @@ import styled from 'styled-components' |
|
|
|
import Link from "next/link" |
|
|
|
import Link from "next/link" |
|
|
|
|
|
|
|
|
|
|
|
const MenuLine = styled.div` |
|
|
|
const MenuLine = styled.div` |
|
|
|
display: block; |
|
|
|
width: 2rem; |
|
|
|
width: 15rem; |
|
|
|
height: 2px; |
|
|
|
height: 5px; |
|
|
|
border-radius: 2px; |
|
|
|
border-radius: 4px; |
|
|
|
|
|
|
|
background-color: var(--fg); |
|
|
|
background-color: var(--fg); |
|
|
|
|
|
|
|
&:not(:last-child) { |
|
|
|
|
|
|
|
margin-bottom: .4rem; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
` |
|
|
|
` |
|
|
|
|
|
|
|
|
|
|
|
const Menu = () => { |
|
|
|
const Menu = () => { |
|
|
|