--- description: Client-side navigations are also possible using the Router API instead of the Link component. Learn more here. --- # Imperatively
Examples
[`next/link`](/docs/api-reference/next/link.md) should be able to cover most of your routing needs, but you can also do client-side navigations without it, take a look at the [Router API documentation](/docs/api-reference/next/router.md#router-api). The following example shows the basic usage of the Router API: ```jsx import Router from 'next/router' function ReadMore() { return (
Click Router.push('/about')}>here to read more
) } export default ReadMore ```