15 lines
431 B
TypeScript
15 lines
431 B
TypeScript
import type { Metadata } from 'next'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Restaurant Promotions & Offers Management | Dine360',
|
|
description: 'Create, manage, and track restaurant promotions with Dine360. Boost sales, attract customers, and run targeted offers with real-time insights.',
|
|
}
|
|
|
|
export default function PromotionManagementLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return <>{children}</>
|
|
}
|