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

15 lines
406 B
TypeScript

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