Initial commit: CHORUS Services marketing website

Complete Next.js website with Docker containerization:
- Next.js 14 with TypeScript and Tailwind CSS
- Responsive design with modern UI components
- Hero section, features showcase, testimonials
- FAQ section with comprehensive content
- Contact forms and newsletter signup
- Docker production build with Nginx
- Health checks and monitoring support
- SEO optimization and performance tuning

Ready for integration as git submodule in main CHORUS project.

Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
anthonyrawlins
2025-08-01 22:45:06 +10:00
commit f343f89d24
50 changed files with 16178 additions and 0 deletions

23
dev.sh Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
# CHORUS Services Website Development Script
# Starts the Next.js development server with proper environment
echo "🎵 Starting CHORUS Services Website Development Server..."
echo "🔧 Installing dependencies if needed..."
# Check if node_modules exists, if not install dependencies
if [ ! -d "node_modules" ]; then
echo "📦 Installing dependencies..."
npm install
fi
echo "🚀 Starting development server..."
echo "📍 URL: http://localhost:3000"
echo "🎨 Theme: CHORUS Dark (Apple-inspired)"
echo "⚡ Components: WHOOSH, BZZZ, SLURP, COOEE"
echo ""
echo "Press Ctrl+C to stop the server"
echo ""
npm run dev