mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
4b66771895
The `legacyBehavior` prop of the `Link` component has been deprecated since #77473. For Next.js 16, we're finally removing support for it. Consequently, we're also removing support for the `passHref` prop, which was only useful in conjunction with the `legacyBehavior` prop. A [codemod is available](https://nextjs.org/docs/app/guides/upgrading/codemods#new-link) to help you automatically upgrade your codebase. reverts #77473 --------- Co-authored-by: Sebastian Sebbie Silbermann <sebastian.silbermann@vercel.com>
62 lines
1.2 KiB
JavaScript
62 lines
1.2 KiB
JavaScript
import Link from "next/link";
|
|
import { useUser } from "../lib/hooks";
|
|
|
|
const Header = () => {
|
|
const user = useUser();
|
|
|
|
return (
|
|
<header>
|
|
<nav>
|
|
<ul>
|
|
<li>
|
|
<Link href="/">Home</Link>
|
|
</li>
|
|
{user ? (
|
|
<>
|
|
<li>
|
|
<Link href="/profile">Profile</Link>
|
|
</li>
|
|
<li>
|
|
<a href="/api/logout">Logout</a>
|
|
</li>
|
|
</>
|
|
) : (
|
|
<li>
|
|
<Link href="/login">Login</Link>
|
|
</li>
|
|
)}
|
|
</ul>
|
|
</nav>
|
|
<style jsx>{`
|
|
nav {
|
|
max-width: 42rem;
|
|
margin: 0 auto;
|
|
padding: 0.2rem 1.25rem;
|
|
}
|
|
ul {
|
|
display: flex;
|
|
list-style: none;
|
|
margin-left: 0;
|
|
padding-left: 0;
|
|
}
|
|
li {
|
|
margin-right: 1rem;
|
|
}
|
|
li:first-child {
|
|
margin-left: auto;
|
|
}
|
|
a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
header {
|
|
color: #fff;
|
|
background-color: #333;
|
|
}
|
|
`}</style>
|
|
</header>
|
|
);
|
|
};
|
|
|
|
export default Header;
|