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 ...
nextjs4u.hashnode.dev3 min read