Home Page: /
This is the Home route using the Next.js App Router.
Use the navigation links in the header to visit /about, /contact, and /blog/nextjs.
What this project demonstrates
- Next.js App Router with file-based routing in the
/appdirectory - Static export using
output: "export"innext.config.js - How
.htaccessis used (or not used) with static Next.js sites - Why React SPA routing usually needs
.htaccess, but this project usually does not
Refresh behavior
Try navigating to /about or /blog/nextjs, then refresh the page. On a correct static export deployment, it should still work because the server is serving pre-generated files, not depending on a client-side router fallback.