About Page
This is a static page that lives in /app/about/page.tsx
Static pages like this one take precedence over the Strapi catch-all route. This means you can have both static content and dynamic Strapi content in the same app.
Adding Static Pages
To add more static pages, create new directories in the /app folder:
app/
contact/
page.tsx # /contact route
services/
page.tsx # /services routeIntegrating Your Existing Static Site
To integrate your existing static site:
- Copy your static HTML/CSS/JS files to the
/publicdirectory - Convert pages to Next.js components in
/appdirectory - Static pages will always take precedence over Strapi routes