import type { Metadata } from 'next' export const metadata: Metadata = { title: 'Restaurant Invoicing & Billing Software | Dine360', description: 'Generate invoices automatically, handle tax calculations, and track payments with Dine360 invoicing built for restaurants.', } export default function InvoicingLayout({ children, }: { children: React.ReactNode }) { return <>{children} }