2. Routing in Next JS
Our page.js file is the ‘/’ home page route Static Route // app/about/page.js → '/about' export default function About() { return <h1>About Page</h1>; } Nested Route // app/dashboard/settings/page.js → '/dashboard/settings' export default ...
Apr 13, 20253 min read13