feat(ADM-018): completed feature
This commit is contained in:
21
project/frontend/src/app/admin/orders/page.tsx
Normal file
21
project/frontend/src/app/admin/orders/page.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import type { Metadata } from 'next';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Admin Pedidos — MercadoDeVida',
|
||||
};
|
||||
|
||||
export default function AdminOrdersPage() {
|
||||
return (
|
||||
<div>
|
||||
<h1 className="text-2xl font-bold text-gray-900 mb-6">Pedidos</h1>
|
||||
<div className="bg-white border border-gray-200 rounded-xl p-12 text-center">
|
||||
<div className="text-5xl mb-4">🧾</div>
|
||||
<h2 className="text-lg font-semibold text-gray-900 mb-2">Sin pedidos aún</h2>
|
||||
<p className="text-gray-500 text-sm">Los pedidos que realicen los clientes aparecerán aquí.</p>
|
||||
<a href="/admin" className="mt-6 inline-block text-sm text-[#70ad47] hover:underline">
|
||||
← Volver al dashboard
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user