============================================================================= KIBUKO WEBSITE - QUICK DEPLOYMENT GUIDE ============================================================================= PROJECT OVERVIEW: - Modern corporate website for KIBUKO Sp. z o.o. - Domain: qibuko.com - Static site (no backend required) - Production-ready build included ============================================================================= DEPLOYMENT OPTIONS: ============================================================================= OPTION 1: FTP/cPanel Upload (Easiest for OVH) ---------------------------------------------- 1. Navigate to: /app/frontend/build/ 2. Upload ALL contents to your OVH web root (public_html or www) 3. Upload .htaccess file (in /app/frontend/) to the same directory 4. Done! Visit https://qibuko.com Files to upload: - index.html - All files in static/ folder - manifest.json - robots.txt - .htaccess (from /app/frontend/) OPTION 2: Docker Deployment ----------------------------- 1. cd /app/frontend 2. docker build -t kibuko-website . 3. docker run -d -p 80:80 --name kibuko kibuko-website 4. Configure reverse proxy to qibuko.com OPTION 3: Nginx/Apache Manual Setup ------------------------------------ 1. Copy /app/frontend/build/* to /var/www/qibuko.com/ 2. Use nginx.conf or .htaccess provided 3. Configure domain DNS 4. Install SSL certificate ============================================================================= FILE LOCATIONS: ============================================================================= Production Build: /app/frontend/build/ Source Code: /app/frontend/src/ Apache Config: /app/frontend/.htaccess Nginx Config: /app/frontend/nginx.conf Docker Setup: /app/frontend/Dockerfile Full Guide: /app/DEPLOYMENT_GUIDE.md ============================================================================= WHAT'S INCLUDED: ============================================================================= ✅ Fully responsive design (mobile/tablet/desktop) ✅ Complete GDPR-compliant Privacy Policy ✅ Terms of Service ✅ Mobile menu ✅ Smooth scroll navigation ✅ Contact information (hello@qibuko.com, Warsaw) ✅ Optimized production build (83KB JS + 9KB CSS gzipped) ✅ SEO-optimized meta tags ============================================================================= SECTIONS: ============================================================================= 1. Hero - "We Build Intelligent, Human-Centered Technology" 2. About - Company background and mission 3. Solutions - 3 service offerings: - Mobile Games & Learning Apps - AI Recommendation Engines - Custom Software Development 4. Contact - Email and location 5. Footer - Legal links and copyright 6. Modals - Privacy Policy & Terms of Service ============================================================================= TESTING THE BUILD LOCALLY: ============================================================================= cd /app/frontend/build npx serve -s . Then open: http://localhost:3000 ============================================================================= SUPPORT: ============================================================================= Email: hello@qibuko.com Location: Warsaw, Poland For technical questions about deployment, refer to: /app/DEPLOYMENT_GUIDE.md =============================================================================