Spruce up contact and repair request forms, fix Docker build timeouts
Some checks failed
Build and Deploy / deploy (push) Has been cancelled

- Contact page: two-column layout with rover image and email card sidebar
- Repair request: hero section, "How it works" steps sidebar, return address
  field, warranty/charges checkbox
- Reduce static generation concurrency to prevent Docker build timeouts
- Bump staticPageGenerationTimeout to 300s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Tim Hadwen
2026-03-06 23:01:06 +10:00
parent bb2a56e7c1
commit 4b2757237e
3 changed files with 399 additions and 270 deletions

View File

@@ -2,7 +2,11 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
staticPageGenerationTimeout: 120,
staticPageGenerationTimeout: 300,
experimental: {
staticGenerationMaxConcurrency: 8,
staticGenerationMinPagesPerWorker: 25,
},
};
export default nextConfig;