Static website for Rumah Mila, a collection of 6 boutique mini-apartments located in Balangan, Bali.
rumah-mila/
βββ index.html # Main HTML file
βββ css/
β βββ styles.css # Main stylesheet
βββ js/
β βββ config.js # Configuration (prices, WhatsApp, units)
β βββ i18n.js # Translations (ES/EN)
β βββ main.js # Main functionality
βββ images/ # Images directory (add your photos here)
βββ README.md # This file
Edit js/config.js to customize:
const CONFIG = {
currency: 'USD',
pricePerNight: 85, // Price per night
cleaningFee: 15, // One-time cleaning fee
minNights: 2, // Minimum stay
whatsappNumber: '+6281234567890', // WhatsApp contact
siteLang: 'es' // Default language
};
git init
git add .
git commit -m "Initial commit: Rumah Mila website"
git remote add origin https://github.com/yourusername/rumah-mila.git
git branch -M main
git push -u origin main
main / roothttps://yourusername.github.io/rumah-mila/Place your images in the images/ folder and update the unit cards:
// In js/config.js, add image property to each unit
units: [
{
id: 1,
name: 'Unidad 1',
image: 'images/unit-1.jpg', // Add this
// ... rest of properties
}
]
Then update the createUnitCard function in js/main.js to use real images instead of placeholder.
Edit CSS custom properties in css/styles.css:
:root {
--marfil-estuco: #EAE6DF;
--olivo: #6F7D62;
/* ... etc */
}
js/i18n.jsjs/main.jsConsider integrating:
Gonzalo Hoces Version: 1.0 - November 2025
This project is private and proprietary to Rumah Mila.
Need help? Contact via WhatsApp: [Update with your number]