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/nav.tsx

34 lines
505 B

import styled from "styled-components";
import NavLinks from "./navlinks";
const NavCont = styled.nav`
display: flex;
gap: 1.5rem;
font-size: 1.2rem;
border: unset;
a {
color: var(--fg-button);
transition: var(--trans-time) opacity;
}
a:hover {
opacity: 0.4;
}
@media screen and (max-width: 960px) {
display: none;
position: absolute;
top: 0;
}
`;
const Nav = () => {
return (
<NavCont>
<NavLinks />
</NavCont>
);
};
export default Nav;