Refactor commerce module
This commit is contained in:
23
src/pages/dashboard/commerce/Hotel.tsx
Normal file
23
src/pages/dashboard/commerce/Hotel.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user