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 route

Integrating Your Existing Static Site

To integrate your existing static site:

  1. Copy your static HTML/CSS/JS files to the /public directory
  2. Convert pages to Next.js components in /app directory
  3. Static pages will always take precedence over Strapi routes