import React, { useState } from 'react';
import {
Phone,
MessageCircle,
MapPin,
Car,
CheckCircle,
Menu,
X,
Clock,
Shield,
UserCheck,
ChevronDown,
ChevronUp,
Star
} from 'lucide-react';
const App = () => {
const [isMenuOpen, setIsMenuOpen] = useState(false);
const [openFaq, setOpenFaq] = useState(null);
const toggleMenu = () => setIsMenuOpen(!isMenuOpen);
const toggleFaq = (index) => setOpenFaq(openFaq === index ? null : index);
const phoneNumber = "6383851885";
const whatsappUrl = `https://wa.me/91${phoneNumber}?text=Hi,%20I%20would%20like%20to%20book%20a%20taxi.`;
const scrollToSection = (id) => {
const element = document.getElementById(id);
if (element) {
element.scrollIntoView({ behavior: 'smooth' });
setIsMenuOpen(false);
}
};
const services = [
{
title: "Local Taxi Service",
desc: "Comfortable and affordable city rides for daily travel. Punctual pickup at your doorstep.",
icon:
},
{
title: "Airport Pickup & Drop",
desc: "On-time airport transfers with professional drivers. Never miss a flight with us.",
icon:
},
{
title: "Outstation Taxi",
desc: "Smooth and safe long-distance travel across Tamil Nadu & Kerala. One-way and round trips.",
icon:
},
{
title: "Wedding & Events",
desc: "Clean and elegant vehicles for special occasions. Make your grand entry in style.",
icon:
},
{
title: "Corporate Travel",
desc: "Reliable transport solutions for offices and business meetings. Monthly billing available.",
icon:
}
];
const fleet = [
{ name: "Sedan (Dzire / Etios)", seats: "4 Seater", type: "AC", ideal: "Small Families, City Rides" },
{ name: "Ertiga", seats: "6+1 Seater", type: "AC", ideal: "Family Trips, Luggage Space" },
{ name: "Innova / Crysta", seats: "7+1 Seater", type: "Premium AC", ideal: "Long Journeys, Luxury Comfort" },
{ name: "Tempo Traveller", seats: "12 / 17 Seater", type: "On Request", ideal: "Group Tours, Pilgrimages" },
];
const packages = [
{ title: "Tirupati Darshan", desc: "Comfortable travel with flexible vehicle options for your pilgrimage." },
{ title: "Ooty – Coonoor", desc: "Enjoy hill station sightseeing with family and friends in pleasant weather." },
{ title: "Kodaikanal Tour", desc: "A relaxing trip to the princess of hill stations with scenic drives." },
{ title: "Munnar Package", desc: "Experience the tea gardens of Kerala with our expert drivers." },
];
const faqs = [
{ q: "Do you provide 24×7 service?", a: "Yes, we operate 24×7 including weekends and holidays." },
{ q: "Are your drivers experienced?", a: "Yes, all our drivers are professional, verified, and experienced." },
{ q: "Do you charge extra at night?", a: "Any night charges will be informed clearly before booking. We believe in transparent pricing." },
{ q: "Is advance payment required?", a: "Advance payment may be required for outstation and tour packages to confirm the booking." },
];
return (
{/* Floating WhatsApp Button */}
{/* Top Bar */}
Reliable Taxi Services – 24×7 | Tamil Nadu & Kerala
{/* Navigation */}
{/* Desktop Menu */}
{['Home', 'Services', 'Fleet', 'Packages', 'About', 'Contact'].map((item) => (
scrollToSection(item.toLowerCase())}
className="hover:text-yellow-500 transition-colors"
>
{item}
))}
Call Now
{/* Mobile Menu Button */}
{isMenuOpen ? : }
{/* Mobile Menu Dropdown */}
{isMenuOpen && (
{['Home', 'Services', 'Fleet', 'Packages', 'About', 'Contact'].map((item) => (
scrollToSection(item.toLowerCase())}
className="text-left font-medium text-gray-700 hover:text-yellow-500"
>
{item}
))}
Call {phoneNumber}
)}
{/* Hero Section */}
{/* REPLACE THE LINK BELOW WITH YOUR 'HOME 5 IMAGE' URL */}
24×7 Reliable Taxi Services
Reliable Taxi Services You Can Trust
Local • Outstation • Airport Pickup & Drop
Clean Vehicles | Experienced Drivers | On-Time Service
{/* Quick Info Bar */}
Quick Booking
Instant confirmation via Call or WhatsApp. No waiting.
Safe Travel
Verified drivers & clean vehicles for family safety.
No Hidden Charges
Transparent pricing. Pay what you see.
{/* About Section */}
Since 2026
About Us
Rodorani Tours And Travels
We are a trusted taxi service provider offering safe, reliable, and comfortable travel solutions.
We are committed to providing high-quality service with professional drivers and well-maintained vehicles.
Our focus is on customer satisfaction, punctuality, and transparent pricing. Whether it’s a short city ride or a long outstation trip, we ensure a smooth and stress-free travel experience.
Experienced Drivers
24×7 Support
On-Time Pickup
Safe for Families
"To become a preferred taxi service provider known for trust and professionalism."
{/* Services Section */}
Our Premium Services
We provide professional taxi services for all your travel needs.
{services.map((service, index) => (
{service.icon}
{service.title}
{service.desc}
))}
{/* Fleet Section */}
Vehicle Options
Choose the right vehicle for your comfortable journey.
{fleet.map((car, index) => (
{car.name}
{car.seats} | {car.type}
Best for: {car.ideal}
))}
{/* Tour Packages */}
Popular Tour Packages
Explore iconic destinations with our reliable service.
{packages.map((pkg, index) => (
{/* Placeholder images - using gradients or generic travel icons since no real images provided */}
))}
{/* FAQ Section */}
Frequently Asked Questions
{faqs.map((faq, index) => (
toggleFaq(index)}
className="w-full px-6 py-4 text-left flex justify-between items-center focus:outline-none bg-white hover:bg-gray-50"
>
{faq.q}
{openFaq === index ? : }
{openFaq === index && (
{faq.a}
)}
))}
{/* Contact CTA */}
{/* Footer */}
Reliable Taxi Services across Tamil Nadu & Kerala. Local, Outstation, and Airport transfers.
{/* Social placeholders */}
F
I
X
Quick Links
scrollToSection('home')} className="hover:text-yellow-400 transition">Home
scrollToSection('about')} className="hover:text-yellow-400 transition">About Us
scrollToSection('services')} className="hover:text-yellow-400 transition">Services
scrollToSection('packages')} className="hover:text-yellow-400 transition">Tour Packages
Contact Info
{phoneNumber}
Available 24x7
Chennai, Tamil Nadu(Serving all major districts)
© 2026 Rodorani Tours And Travels. All Rights Reserved. Designed & Developed by VIJEETH UNNIKRISHAN
);
};
export default App;