import type { Metadata } from 'next' export const metadata: Metadata = { title: 'Restaurant POS Pricing Plans & Packages | Dine360', description: 'Explore Dine360 pricing plans for restaurants. Flexible, scalable solutions for POS, inventory, and complete restaurant management.', } export default function PricingLayout({ children, }: { children: React.ReactNode }) { return <>{children} }