import type { Metadata } from 'next' export const metadata: Metadata = { title: 'Restaurant Sales Analytics & Reports | Dine360', description: 'Analyze restaurant performance with real-time sales tracking, revenue reports, menu insights, and peak hour analytics using Dine360.', } export default function OrderManagementLayout({ children, }: { children: React.ReactNode }) { return <>{children} }