import React, { useState, useEffect } from 'react'; import { LayoutDashboard, Users, CreditCard, FileText, ShieldCheck, Smartphone, CheckCircle, Clock, Menu, X, ChevronRight, Bell, Printer, TrendingUp, Lock, Star, MapPin, Building } from 'lucide-react'; /* SEO RECOMMENDATION: For the best SEO results, please add the following inside the tag of your index.html: KMS Hotel ERP - Best Hotel & Lodge Management Software with GST */ const Navigation = () => { const [isScrolled, setIsScrolled] = useState(false); const [mobileMenuOpen, setMobileMenuOpen] = useState(false); useEffect(() => { const handleScroll = () => setIsScrolled(window.scrollY > 20); window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); const scrollToForm = () => { const formElement = document.getElementById('demo-form'); if (formElement) { formElement.scrollIntoView({ behavior: 'smooth' }); } setMobileMenuOpen(false); }; return ( ); }; const Hero = () => { return (
{/* Abstract Background Shapes */}
v2.0 Premium Edition Now Available

Efficiency, Security, & Style for Modern Hospitality

Replace manual registers with a Unified Digital Command Center. KMS Hotel ERP stops revenue leakage, automates GST billing, and ensures you are audit-ready every single day.

{[1,2,3,4].map(i => (
{String.fromCharCode(64+i)}
))}

Trusted by 100+ Hotels & Lodges across India

{/* Visual Mockup of the Dashboard - CSS Only for Performance */}
); }; const KeyFeature = ({ icon: Icon, title, description, color }) => (

{title}

{description}

); const FeaturesSection = () => { return (

The Unified Digital Command Center

Designed for speed and security. From the receptionist to the owner, everyone gets a dedicated dashboard tailored to their role in the hotel hierarchy.

); }; const ModuleCard = ({ title, items, side }) => (
{/* Abstract Representation of the Module Interface */}

{title}

); const ModulesSection = () => { return (
Comprehensive Suite

Core ERP Modules

); }; const BenefitsSection = () => { const [formData, setFormData] = useState({ hotelName: '', yourName: '', phone: '', city: '', state: '', rooms: '1 - 10 Rooms' }); const handleChange = (e) => { setFormData({ ...formData, [e.target.name]: e.target.value }); }; const handleSubmit = (e) => { e.preventDefault(); const { hotelName, yourName, phone, city, state, rooms } = formData; // Construct the WhatsApp message const message = `*Request for KMS Hotel ERP Demo* --------------------------- 🏨 *Hotel Name:* ${hotelName || 'Not Provided'} 👤 *Name:* ${yourName || 'Not Provided'} 📞 *Phone:* +91 ${phone || 'Not Provided'} 🏙 *City:* ${city || 'Not Provided'} 📍 *State:* ${state || 'Not Provided'} 🛏 *Rooms:* ${rooms} --------------------------- Please schedule a demo.`; // Create the WhatsApp URL const url = `https://wa.me/919347333331?text=${encodeURIComponent(message)}`; // Open in new tab window.open(url, '_blank'); }; return (

Why Hotel Owners Choose KMS

KMS Hotel ERP isn't just software; it's a business growth engine. We solve the specific headaches of Indian lodge and hotel owners.

{[ { t: "Stop Revenue Leakage", d: "Every occupied room is tracked. If the room is red on the dashboard, money must be accounted for." }, { t: "Zero Communication Gaps", d: "Front desk doesn't need to call Housekeeping. The system notifies them instantly via sound alerts." }, { t: "Owner Mode Anywhere", d: "Web-based architecture allows you to check occupancy and collections from anywhere in the world." }, { t: "Professional Image", d: "Replace handwritten notes with crisp, computer-generated invoices that justify premium pricing." } ].map((item, i) => (

{item.t}

{item.d}

))}

Get Started Today

+91

Powered by KITTYS MICRO SOLUTIONS. Your data is secure.

); }; const Footer = () => { return ( ); }; const App = () => { return (
); }; export default App;