24 lines
699 B
TypeScript
24 lines
699 B
TypeScript
import React from 'react';
|
|
import { Hotel as HotelIcon } from 'lucide-react';
|
|
import HotelManagement from '@/components/establishments/HotelManagement';
|
|
|
|
const Hotel = () => {
|
|
return (
|
|
<div className="min-h-screen bg-gray-50 p-6">
|
|
<div className="max-w-7xl mx-auto">
|
|
<div className="flex items-center gap-3 mb-6">
|
|
<HotelIcon className="w-8 h-8 text-orange-600" />
|
|
<div>
|
|
<h1 className="text-3xl font-bold text-gray-900">Gestión de Hotel</h1>
|
|
<p className="text-gray-600">Administra habitaciones y servicios</p>
|
|
</div>
|
|
</div>
|
|
|
|
<HotelManagement />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Hotel;
|