--- title: Link Component description: Enable fast client-side navigation with the built-in `next/link` component. --- {/* The content of this doc is shared between the app and pages router. You can use the `Content` component to add content that is specific to the Pages Router. Any shared content should not be wrapped in a component. */} `` is a React component that extends the HTML `` element to provide [prefetching](/docs/app/getting-started/linking-and-navigating#prefetching) and client-side navigation between routes. It is the primary way to navigate between routes in Next.js. Basic usage: ```tsx filename="app/page.tsx" switcher import Link from 'next/link' export default function Page() { return Dashboard } ``` ```jsx filename="app/page.js" switcher import Link from 'next/link' export default function Page() { return Dashboard } ``` ```tsx filename="pages/index.tsx" switcher import Link from 'next/link' export default function Home() { return Dashboard } ``` ```jsx filename="pages/index.js" switcher import Link from 'next/link' export default function Home() { return Dashboard } ``` ## Reference The following props can be passed to the `` component: | Prop | Example | Type | Required | | ----------------------------------- | ------------------------ | ----------------- | -------- | | [`href`](#href-required) | `href="/dashboard"` | String or Object | Yes | | [`replace`](#replace) | `replace={false}` | Boolean | - | | [`scroll`](#scroll) | `scroll={false}` | Boolean | - | | [`prefetch`](#prefetch) | `prefetch={false}` | Boolean | - | | [`legacyBehavior`](#legacybehavior) | `legacyBehavior={true}` | Boolean | - | | [`passHref`](#passhref) | `passHref={true}` | Boolean | - | | [`shallow`](#shallow) | `shallow={false}` | Boolean | - | | [`locale`](#locale) | `locale="fr"` | String or Boolean | - | | [`onNavigate`](#onnavigate) | `onNavigate={(e) => {}}` | Function | - | | Prop | Example | Type | Required | | --------------------------- | ------------------------ | ---------------- | -------- | | [`href`](#href-required) | `href="/dashboard"` | String or Object | Yes | | [`replace`](#replace) | `replace={false}` | Boolean | - | | [`scroll`](#scroll) | `scroll={false}` | Boolean | - | | [`prefetch`](#prefetch) | `prefetch={false}` | Boolean or null | - | | [`onNavigate`](#onnavigate) | `onNavigate={(e) => {}}` | Function | - | > **Good to know**: `` tag attributes such as `className` or `target="_blank"` can be added to `` as props and will be passed to the underlying `` element. ### `href` (required) The path or URL to navigate to. ```tsx filename="app/page.tsx" switcher import Link from 'next/link' // Navigate to /about?name=test export default function Page() { return ( About ) } ``` ```jsx filename="app/page.js" switcher import Link from 'next/link' // Navigate to /about?name=test export default function Page() { return ( About ) } ``` ```tsx filename="pages/index.tsx" switcher import Link from 'next/link' // Navigate to /about?name=test export default function Home() { return ( About ) } ``` ```jsx filename="pages/index.js" switcher import Link from 'next/link' // Navigate to /about?name=test export default function Home() { return ( About ) } ``` ### `replace` **Defaults to `false`.** When `true`, `next/link` will replace the current history state instead of adding a new URL into the [browser's history](https://developer.mozilla.org/docs/Web/API/History_API) stack. ```tsx filename="app/page.tsx" switcher import Link from 'next/link' export default function Page() { return ( Dashboard ) } ``` ```jsx filename="app/page.js" switcher import Link from 'next/link' export default function Page() { return ( Dashboard ) } ``` ```tsx filename="pages/index.tsx" switcher import Link from 'next/link' export default function Home() { return ( Dashboard ) } ``` ```jsx filename="pages/index.js" switcher import Link from 'next/link' export default function Home() { return ( Dashboard ) } ``` ### `scroll` **Defaults to `true`.** The default scrolling behavior of `` in Next.js **is to maintain scroll position**, similar to how browsers handle back and forwards navigation. When you navigate to a new [Page](/docs/app/api-reference/file-conventions/page), scroll position will stay the same as long as the Page is visible in the viewport. However, if the Page is not visible in the viewport, Next.js will scroll to the top of the first Page element. When `scroll = {false}`, Next.js will not attempt to scroll to the first Page element. > **Good to know**: Next.js checks if `scroll: false` before managing scroll behavior. If scrolling is enabled, it identifies the relevant DOM node for navigation and inspects each top-level element. All non-scrollable elements and those without rendered HTML are bypassed, this includes sticky or fixed positioned elements, and non-visible elements such as those calculated with `getBoundingClientRect`. Next.js then continues through siblings until it identifies a scrollable element that is visible in the viewport. ```tsx filename="app/page.tsx" switcher import Link from 'next/link' export default function Page() { return ( Dashboard ) } ``` ```jsx filename="app/page.js" switcher import Link from 'next/link' export default function Page() { return ( Dashboard ) } ``` ```tsx filename="pages/index.tsx" switcher import Link from 'next/link' export default function Home() { return ( Dashboard ) } ``` ```jsx filename="pages/index.js" switcher import Link from 'next/link' export default function Home() { return ( Dashboard ) } ``` ### `prefetch` Prefetching happens when a `` component enters the user's viewport (initially or through scroll). Next.js prefetches and loads the linked route (denoted by the `href`) and its data in the background to improve the performance of client-side navigations. If the prefetched data has expired by the time the user hovers over a ``, Next.js will attempt to prefetch it again. **Prefetching is only enabled in production**. The following values can be passed to the `prefetch` prop: - **`"auto"` or `null` (default)**: Prefetch behavior depends on whether the route is static or dynamic. For static routes, the full route will be prefetched (including all its data). For dynamic routes, the partial route down to the nearest segment with a [`loading.js`](/docs/app/api-reference/file-conventions/loading#instant-loading-states) boundary will be prefetched. - `true`: The full route will be prefetched for both static and dynamic routes. - `false`: Prefetching will never happen both on entering the viewport and on hover. ```tsx filename="app/page.tsx" switcher import Link from 'next/link' export default function Page() { return ( Dashboard ) } ``` ```jsx filename="app/page.js" switcher import Link from 'next/link' export default function Page() { return ( Dashboard ) } ``` Prefetching happens when a `` component enters the user's viewport (initially or through scroll). Next.js prefetches and loads the linked route (denoted by the `href`) and data in the background to improve the performance of client-side navigation's. **Prefetching is only enabled in production**. The following values can be passed to the `prefetch` prop: - **`true` (default)**: The full route and its data will be prefetched. - `false`: Prefetching will not happen when entering the viewport, but will happen on hover. If you want to completely remove fetching on hover as well, consider using an `` tag or [incrementally adopting](/docs/app/guides/migrating/app-router-migration) the App Router, which enables disabling prefetching on hover too. ```tsx filename="pages/index.tsx" switcher import Link from 'next/link' export default function Home() { return ( Dashboard ) } ``` ```jsx filename="pages/index.js" switcher import Link from 'next/link' export default function Home() { return ( Dashboard ) } ``` ### `legacyBehavior` > **Warning**: The `legacyBehavior` prop will be removed in Next.js v16. To adopt the new `` behavior, remove any `` tags used as children of ``. A [codemod is available](/docs/app/guides/upgrading/codemods#new-link) to help you automatically upgrade your codebase. Since version 13, an `` element is no longer required as a child of the `` component. If you still need the old behavior for compatibility reasons, you can add the `legacyBehavior` prop. > **Good to know**: when `legacyBehavior` is not set to `true`, all [`anchor`](https://developer.mozilla.org/docs/Web/HTML/Element/a) tag properties can be passed to `next/link` as well such as, `className`, `onClick`, etc. ### `passHref` Forces `Link` to send the `href` property to its child. Defaults to `false`. See the [passing a functional component](#nesting-a-functional-component) example for more information. ### `shallow` Update the path of the current page without rerunning [`getStaticProps`](/docs/pages/building-your-application/data-fetching/get-static-props), [`getServerSideProps`](/docs/pages/building-your-application/data-fetching/get-server-side-props) or [`getInitialProps`](/docs/pages/api-reference/functions/get-initial-props). Defaults to `false`. ```tsx filename="pages/index.tsx" switcher import Link from 'next/link' export default function Home() { return ( Dashboard ) } ``` ```jsx filename="pages/index.js" switcher import Link from 'next/link' export default function Home() { return ( Dashboard ) } ``` ### `locale` The active locale is automatically prepended. `locale` allows for providing a different locale. When `false` `href` has to include the locale as the default behavior is disabled. ```tsx filename="pages/index.tsx" switcher import Link from 'next/link' export default function Home() { return ( <> {/* Default behavior: locale is prepended */} Dashboard (with locale) {/* Disable locale prepending */} Dashboard (without locale) {/* Specify a different locale */} Dashboard (French) ) } ``` ```jsx filename="pages/index.js" switcher import Link from 'next/link' export default function Home() { return ( <> {/* Default behavior: locale is prepended */} Dashboard (with locale) {/* Disable locale prepending */} Dashboard (without locale) {/* Specify a different locale */} Dashboard (French) ) } ``` ### `onNavigate` An event handler called during client-side navigation. The handler receives an event object that includes a `preventDefault()` method, allowing you to cancel the navigation if needed. ```tsx filename="app/page.tsx" switcher import Link from 'next/link' export default function Page() { return ( { // Only executes during SPA navigation console.log('Navigating...') // Optionally prevent navigation // e.preventDefault() }} > Dashboard ) } ``` ```jsx filename="app/page.js" switcher import Link from 'next/link' export default function Page() { return ( { // Only executes during SPA navigation console.log('Navigating...') // Optionally prevent navigation // e.preventDefault() }} > Dashboard ) } ``` > **Good to know**: While `onClick` and `onNavigate` may seem similar, they serve different purposes. `onClick` executes for all click events, while `onNavigate` only runs during client-side navigation. Some key differences: > > - When using modifier keys (`Ctrl`/`Cmd` + Click), `onClick` executes but `onNavigate` doesn't since Next.js prevents default navigation for new tabs. > - External URLs won't trigger `onNavigate` since it's only for client-side and same-origin navigations. > - Links with the `download` attribute will work with `onClick` but not `onNavigate` since the browser will treat the linked URL as a download. ## Examples The following examples demonstrate how to use the `` component in different scenarios. ### Linking to dynamic route segments When linking to [dynamic segments](/docs/app/api-reference/file-conventions/dynamic-routes), you can use [template literals and interpolation](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Template_literals) to generate a list of links. For example, to generate a list of blog posts: ```tsx filename="app/blog/post-list.tsx" switcher import Link from 'next/link' interface Post { id: number title: string slug: string } export default function PostList({ posts }: { posts: Post[] }) { return ( ) } ``` ```jsx filename="app/blog/post-list.js" switcher import Link from 'next/link' export default function PostList({ posts }) { return ( ) } ``` ### Checking active links You can use [`usePathname()`](/docs/app/api-reference/functions/use-pathname) to determine if a link is active. For example, to add a class to the active link, you can check if the current `pathname` matches the `href` of the link: ```tsx filename="app/ui/nav-links.tsx" switcher 'use client' import { usePathname } from 'next/navigation' import Link from 'next/link' export function Links() { const pathname = usePathname() return ( ) } ``` ```jsx filename="app/ui/nav-links.js" switcher 'use client' import { usePathname } from 'next/navigation' import Link from 'next/link' export function Links() { const pathname = usePathname() return ( ) } ``` ### Linking to dynamic route segments For [dynamic route segments](/docs/pages/building-your-application/routing/dynamic-routes#convention), it can be handy to use template literals to create the link's path. For example, you can generate a list of links to the dynamic route `pages/blog/[slug].js` ```tsx filename="pages/blog/index.tsx" switcher import Link from 'next/link' function Posts({ posts }) { return ( ) } ``` ```jsx filename="pages/blog/index.js" switcher import Link from 'next/link' function Posts({ posts }) { return ( ) } export default Posts ``` ### Scrolling to an `id` If you'd like to scroll to a specific `id` on navigation, you can append your URL with a `#` hash link or just pass a hash link to the `href` prop. This is possible since `` renders to an `` element. ```jsx Settings // Output Settings ``` > **Good to know**: > > - Next.js will scroll to the [Page](/docs/app/api-reference/file-conventions/page) if it is not visible in the viewport upon navigation. ### If the child is a custom component that wraps an `` tag If the child of `Link` is a custom component that wraps an `` tag, you must add `passHref` to `Link`. This is necessary if you’re using libraries like [styled-components](https://styled-components.com/). Without this, the `` tag will not have the `href` attribute, which hurts your site's accessibility and might affect SEO. If you're using [ESLint](/docs/app/api-reference/config/eslint), there is a built-in rule `next/link-passhref` to ensure correct usage of `passHref`. If the child of `Link` is a custom component that wraps an `` tag, you must add `passHref` to `Link`. This is necessary if you’re using libraries like [styled-components](https://styled-components.com/). Without this, the `` tag will not have the `href` attribute, which hurts your site's accessibility and might affect SEO. If you're using [ESLint](/docs/pages/api-reference/config/eslint), there is a built-in rule `next/link-passhref` to ensure correct usage of `passHref`. ```tsx filename="components/nav-link.tsx" switcher import Link from 'next/link' import styled from 'styled-components' // This creates a custom component that wraps an tag const RedLink = styled.a` color: red; ` function NavLink({ href, name }) { return ( {name} ) } export default NavLink ``` ```jsx filename="components/nav-link.js" switcher import Link from 'next/link' import styled from 'styled-components' // This creates a custom component that wraps an tag const RedLink = styled.a` color: red; ` function NavLink({ href, name }) { return ( {name} ) } export default NavLink ``` - If you’re using [emotion](https://emotion.sh/)’s JSX pragma feature (`@jsx jsx`), you must use `passHref` even if you use an `` tag directly. - The component should support `onClick` property to trigger navigation correctly. ### Nesting a functional component If the child of `Link` is a functional component, in addition to using `passHref` and `legacyBehavior`, you must wrap the component in [`React.forwardRef`](https://react.dev/reference/react/forwardRef): ```tsx filename="app/page.tsx" switcher import Link from 'next/link' import React from 'react' // Define the props type for MyButton interface MyButtonProps { onClick?: React.MouseEventHandler href?: string } // Use React.ForwardRefRenderFunction to properly type the forwarded ref const MyButton: React.ForwardRefRenderFunction< HTMLAnchorElement, MyButtonProps > = ({ onClick, href }, ref) => { return ( Click Me ) } // Use React.forwardRef to wrap the component const ForwardedMyButton = React.forwardRef(MyButton) export default function Page() { return ( ) } ``` ```jsx filename="app/page.js" switcher import Link from 'next/link' import React from 'react' // `onClick`, `href`, and `ref` need to be passed to the DOM element // for proper handling const MyButton = React.forwardRef(({ onClick, href }, ref) => { return ( Click Me ) }) // Add a display name for the component (useful for debugging) MyButton.displayName = 'MyButton' export default function Page() { return ( ) } ``` ```tsx filename="pages/index.tsx" switcher import Link from 'next/link' import React from 'react' // Define the props type for MyButton interface MyButtonProps { onClick?: React.MouseEventHandler href?: string } // Use React.ForwardRefRenderFunction to properly type the forwarded ref const MyButton: React.ForwardRefRenderFunction< HTMLAnchorElement, MyButtonProps > = ({ onClick, href }, ref) => { return ( Click Me ) } // Use React.forwardRef to wrap the component const ForwardedMyButton = React.forwardRef(MyButton) export default function Home() { return ( ) } ``` ```jsx filename="pages/index.js" switcher import Link from 'next/link' import React from 'react' // `onClick`, `href`, and `ref` need to be passed to the DOM element // for proper handling const MyButton = React.forwardRef(({ onClick, href }, ref) => { return ( Click Me ) }) // Add a display name for the component (useful for debugging) MyButton.displayName = 'MyButton' export default function Home() { return ( ) } ``` ### Passing a URL Object `Link` can also receive a URL object and it will automatically format it to create the URL string: ```tsx filename="pages/index.ts" switcher import Link from 'next/link' function Home() { return (
  • About us
  • Blog Post
) } export default Home ``` ```jsx filename="pages/index.js" switcher import Link from 'next/link' function Home() { return (
  • About us
  • Blog Post
) } export default Home ``` The above example has a link to: - A predefined route: `/about?name=test` - A [dynamic route](/docs/pages/building-your-application/routing/dynamic-routes#convention): `/blog/my-post` You can use every property as defined in the [Node.js URL module documentation](https://nodejs.org/api/url.html#url_url_strings_and_url_objects).
### Replace the URL instead of push The default behavior of the `Link` component is to `push` a new URL into the `history` stack. You can use the `replace` prop to prevent adding a new entry, as in the following example: ```tsx filename="app/page.js" switcher import Link from 'next/link' export default function Page() { return ( About us ) } ``` ```jsx filename="app/page.js" switcher import Link from 'next/link' export default function Page() { return ( About us ) } ``` ```tsx filename="pages/index.js" switcher import Link from 'next/link' export default function Home() { return ( About us ) } ``` ```jsx filename="pages/index.js" switcher import Link from 'next/link' export default function Home() { return ( About us ) } ``` ### Disable scrolling to the top of the page The default scrolling behavior of `` in Next.js **is to maintain scroll position**, similar to how browsers handle back and forwards navigation. When you navigate to a new [Page](/docs/app/api-reference/file-conventions/page), scroll position will stay the same as long as the Page is visible in the viewport. However, if the Page is not visible in the viewport, Next.js will scroll to the top of the first Page element. If you'd like to disable this behavior, you can pass `scroll={false}` to the `` component, or `scroll: false` to `router.push()` or `router.replace()`. ```jsx filename="app/page.js" switcher import Link from 'next/link' export default function Page() { return ( Disables scrolling to the top ) } ``` ```tsx filename="app/page.tsx" switcher import Link from 'next/link' export default function Page() { return ( Disables scrolling to the top ) } ``` Using `router.push()` or `router.replace()`: ```jsx // useRouter import { useRouter } from 'next/navigation' const router = useRouter() router.push('/dashboard', { scroll: false }) ``` The default behavior of `Link` is to scroll to the top of the page. When there is a hash defined it will scroll to the specific id, like a normal `` tag. To prevent scrolling to the top / hash `scroll={false}` can be added to `Link`: ```jsx filename="pages/index.js" switcher import Link from 'next/link' export default function Home() { return ( Disables scrolling to the top ) } ``` ```tsx filename="pages/index.tsx" switcher import Link from 'next/link' export default function Home() { return ( Disables scrolling to the top ) } ``` ### Prefetching links in Middleware It's common to use [Middleware](/docs/app/api-reference/file-conventions/middleware) for authentication or other purposes that involve rewriting the user to a different page. In order for the `` component to properly prefetch links with rewrites via Middleware, you need to tell Next.js both the URL to display and the URL to prefetch. This is required to avoid un-necessary fetches to middleware to know the correct route to prefetch. For example, if you want to serve a `/dashboard` route that has authenticated and visitor views, you can add the following in your Middleware to redirect the user to the correct page: ```ts filename="middleware.ts" switcher import { NextResponse } from 'next/server' export function middleware(request: Request) { const nextUrl = request.nextUrl if (nextUrl.pathname === '/dashboard') { if (request.cookies.authToken) { return NextResponse.rewrite(new URL('/auth/dashboard', request.url)) } else { return NextResponse.rewrite(new URL('/public/dashboard', request.url)) } } } ``` ```js filename="middleware.js" switcher import { NextResponse } from 'next/server' export function middleware(request) { const nextUrl = request.nextUrl if (nextUrl.pathname === '/dashboard') { if (request.cookies.authToken) { return NextResponse.rewrite(new URL('/auth/dashboard', request.url)) } else { return NextResponse.rewrite(new URL('/public/dashboard', request.url)) } } } ``` In this case, you would want to use the following code in your `` component: ```tsx filename="app/page.tsx" switcher 'use client' import Link from 'next/link' import useIsAuthed from './hooks/useIsAuthed' // Your auth hook export default function Page() { const isAuthed = useIsAuthed() const path = isAuthed ? '/auth/dashboard' : '/public/dashboard' return ( Dashboard ) } ``` ```js filename="app/page.js" switcher 'use client' import Link from 'next/link' import useIsAuthed from './hooks/useIsAuthed' // Your auth hook export default function Page() { const isAuthed = useIsAuthed() const path = isAuthed ? '/auth/dashboard' : '/public/dashboard' return ( Dashboard ) } ``` ```tsx filename="pages/index.tsx" switcher 'use client' import Link from 'next/link' import useIsAuthed from './hooks/useIsAuthed' // Your auth hook export default function Home() { const isAuthed = useIsAuthed() const path = isAuthed ? '/auth/dashboard' : '/public/dashboard' return ( Dashboard ) } ``` ```js filename="pages/index.js" switcher 'use client' import Link from 'next/link' import useIsAuthed from './hooks/useIsAuthed' // Your auth hook export default function Home() { const isAuthed = useIsAuthed() const path = isAuthed ? '/auth/dashboard' : '/public/dashboard' return ( Dashboard ) } ``` > **Good to know**: If you're using [Dynamic Routes](/docs/pages/building-your-application/routing/dynamic-routes#convention), you'll need to adapt your `as` and `href` props. For example, if you have a Dynamic Route like `/dashboard/authed/[user]` that you want to present differently via middleware, you would write: `Profile`. ### Blocking navigation You can use the `onNavigate` prop to block navigation when certain conditions are met, such as when a form has unsaved changes. When you need to block navigation across multiple components in your app (like preventing navigation from any link while a form is being edited), React Context provides a clean way to share this blocking state. First, create a context to track the navigation blocking state: ```tsx filename="app/contexts/navigation-blocker.tsx" switcher 'use client' import { createContext, useState, useContext } from 'react' interface NavigationBlockerContextType { isBlocked: boolean setIsBlocked: (isBlocked: boolean) => void } export const NavigationBlockerContext = createContext({ isBlocked: false, setIsBlocked: () => {}, }) export function NavigationBlockerProvider({ children, }: { children: React.ReactNode }) { const [isBlocked, setIsBlocked] = useState(false) return ( {children} ) } export function useNavigationBlocker() { return useContext(NavigationBlockerContext) } ``` ```jsx filename="app/contexts/navigation-blocker.js" switcher 'use client' import { createContext, useState, useContext } from 'react' export const NavigationBlockerContext = createContext({ isBlocked: false, setIsBlocked: () => {}, }) export function NavigationBlockerProvider({ children }) { const [isBlocked, setIsBlocked] = useState(false) return ( {children} ) } export function useNavigationBlocker() { return useContext(NavigationBlockerContext) } ``` Create a form component that uses the context: ```tsx filename="app/components/form.tsx" switcher 'use client' import { useNavigationBlocker } from '../contexts/navigation-blocker' export default function Form() { const { setIsBlocked } = useNavigationBlocker() return (
{ e.preventDefault() setIsBlocked(false) }} onChange={() => setIsBlocked(true)} >
) } ``` ```jsx filename="app/components/form.js" switcher 'use client' import { useNavigationBlocker } from '../contexts/navigation-blocker' export default function Form() { const { setIsBlocked } = useNavigationBlocker() return (
{ e.preventDefault() setIsBlocked(false) }} onChange={() => setIsBlocked(true)} >
) } ``` Create a custom Link component that blocks navigation: ```tsx filename="app/components/custom-link.tsx" switcher 'use client' import Link from 'next/link' import { useNavigationBlocker } from '../contexts/navigation-blocker' interface CustomLinkProps extends React.ComponentProps { children: React.ReactNode } export function CustomLink({ children, ...props }: CustomLinkProps) { const { isBlocked } = useNavigationBlocker() return ( { if ( isBlocked && !window.confirm('You have unsaved changes. Leave anyway?') ) { e.preventDefault() } }} {...props} > {children} ) } ``` ```jsx filename="app/components/custom-link.js" switcher 'use client' import Link from 'next/link' import { useNavigationBlocker } from '../contexts/navigation-blocker' export function CustomLink({ children, ...props }) { const { isBlocked } = useNavigationBlocker() return ( { if ( isBlocked && !window.confirm('You have unsaved changes. Leave anyway?') ) { e.preventDefault() } }} {...props} > {children} ) } ``` Create a navigation component: ```tsx filename="app/components/nav.tsx" switcher 'use client' import { CustomLink as Link } from './custom-link' export default function Nav() { return ( ) } ``` ```jsx filename="app/components/nav.js" switcher 'use client' import { CustomLink as Link } from './custom-link' export default function Nav() { return ( ) } ``` Finally, wrap your app with the `NavigationBlockerProvider` in the root layout and use the components in your page: ```tsx filename="app/layout.tsx" switcher import { NavigationBlockerProvider } from './contexts/navigation-blocker' export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children} ) } ``` ```jsx filename="app/layout.js" switcher import { NavigationBlockerProvider } from './contexts/navigation-blocker' export default function RootLayout({ children }) { return ( {children} ) } ``` Then, use the `Nav` and `Form` components in your page: ```tsx filename="app/page.tsx" switcher import Nav from './components/nav' import Form from './components/form' export default function Page() { return (
) } ``` ```jsx filename="app/page.js" switcher import Nav from './components/nav' import Form from './components/form' export default function Page() { return (
) } ``` When a user tries to navigate away using `CustomLink` while the form has unsaved changes, they'll be prompted to confirm before leaving.
## Version history | Version | Changes | | --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `v15.4.0` | Add `auto` as an alias to the default `prefetch` behavior. | | `v15.3.0` | Add `onNavigate` API | | `v13.0.0` | No longer requires a child `
` tag. A [codemod](/docs/app/guides/upgrading/codemods#remove-a-tags-from-link-components) is provided to automatically update your codebase. | | `v10.0.0` | `href` props pointing to a dynamic route are automatically resolved and no longer require an `as` prop. | | `v8.0.0` | Improved prefetching performance. | | `v1.0.0` | `next/link` introduced. |