Refactor commerce module

This commit is contained in:
gpt-engineer-app[bot]
2025-10-11 02:20:04 +00:00
parent 6652cc60da
commit 1b9edcd0a5
12 changed files with 995 additions and 1 deletions

View 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;