import type { Metadata } from 'next';

export const metadata: Metadata = {
  title: 'Admin - FoodMart',
  robots: 'noindex, nofollow',
};

export default function AdminLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <div className="min-h-screen bg-[#0a0a0b] text-white">
      {children}
    </div>
  );
}
