add people n heor

This commit is contained in:
2025-08-06 13:00:32 +02:00
parent 49a385d366
commit 06b0e11a8f
19 changed files with 558 additions and 182 deletions

View File

@@ -1,4 +1,13 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}
const nextConfig = {
output: 'export',
trailingSlash: true,
images: {
unoptimized: true,
},
// Note: API routes in src/app/api/ will not work with static export
// The contact form API route will need to be handled separately
// Consider using a serverless function or external service for form handling
};
module.exports = nextConfig
module.exports = nextConfig;