mirror of
https://github.com/complexcaresolutions/frontend.zweitmeinu.ng.git
synced 2026-03-17 17:23:48 +00:00
Replace hardcoded content with Payload CMS data for: - Services overview, listing, and detail pages (features, icons, sections) - FAQ page with rich text rendering and Schema.org structured data - Contact info in TopBar, EmergencyBanner, Footer, and Kontakt page - Header mega-menu with dynamic service list New utilities: icon-map.ts (Lucide icon mapping), RichTextRenderer.tsx Fix: ecosystem.config.js PM2 script path for Next.js Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
247 B
JavaScript
12 lines
247 B
JavaScript
module.exports = {
|
|
apps: [{
|
|
name: 'zweitmeinu.ng',
|
|
script: 'node_modules/next/dist/bin/next',
|
|
args: 'start',
|
|
cwd: '/home/frontend/frontend.zweitmeinu.ng',
|
|
env: {
|
|
PORT: 3002,
|
|
NODE_ENV: 'production',
|
|
},
|
|
}],
|
|
}
|