feat(ADM-018): completed feature

This commit is contained in:
chattie
2026-08-17 22:23:10 +02:00
parent cf1c69fc8b
commit d595b4871f
871 changed files with 47411 additions and 281 deletions

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