Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Creating Active Links | Pages and Layouts
Next.js 14

Creating Active LinksCreating Active Links

In web development, a common practice is highlighting active links based on the current page.

In Next.js, we can achieve this using the usePathname() hook. This hook checks the current path in the app, allowing us to implement dynamic highlighting for the corresponding page with the clsx library.

Back to the Project

To utilize usePathname() hook, convert nav-links.tsx into a Client Component. Begin by adding "use client" directive at the top of the file.

app/ui/dashboard/nav-links.tsx

Now, we can use the usePathname hook and use it.

app/ui/dashboard/nav-links.tsx

Lastly, employ the clsx library to apply styles conditionally. Set the condition such that if the pathname is equal to link.href, change the background color to bg-neutral-600.

app/ui/dashboard/nav-links.tsx

In Practice

Все було зрозуміло?

Секція 3. Розділ 5
course content

Зміст курсу

Next.js 14

Creating Active LinksCreating Active Links

In web development, a common practice is highlighting active links based on the current page.

In Next.js, we can achieve this using the usePathname() hook. This hook checks the current path in the app, allowing us to implement dynamic highlighting for the corresponding page with the clsx library.

Back to the Project

To utilize usePathname() hook, convert nav-links.tsx into a Client Component. Begin by adding "use client" directive at the top of the file.

app/ui/dashboard/nav-links.tsx

Now, we can use the usePathname hook and use it.

app/ui/dashboard/nav-links.tsx

Lastly, employ the clsx library to apply styles conditionally. Set the condition such that if the pathname is equal to link.href, change the background color to bg-neutral-600.

app/ui/dashboard/nav-links.tsx

In Practice

Все було зрозуміло?

Секція 3. Розділ 5
some-alt