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

15 lines
387 B
TypeScript

import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Restaurant Management Tips & Insights | Dine360',
description: 'Read Dine360 blog for restaurant tips, POS insights, marketing strategies, and industry trends to grow your business.',
}
export default function BlogLayout({
children,
}: {
children: React.ReactNode
}) {
return <>{children}</>
}