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.
22 lines
352 B
22 lines
352 B
import styled from 'styled-components'
|
|
import Link from "next/link"
|
|
|
|
const MenuLine = styled.div`
|
|
display: block;
|
|
width: 15rem;
|
|
height: 5px;
|
|
border-radius: 4px;
|
|
background-color: var(--fg);
|
|
`
|
|
|
|
const Menu = () => {
|
|
return (
|
|
<div className="burger-container">
|
|
<MenuLine />
|
|
<MenuLine />
|
|
<MenuLine />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Menu
|
|
|