2026-04-04 18:54:47 +05:30

15 lines
412 B
TypeScript

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}</>
}