import type { Metadata } from 'next'

export const metadata: Metadata = {
  title: 'My Searches',
  robots: { index: false, follow: false },
}

export default function SearchesLayout({ children }: { children: React.ReactNode }) {
  return children
}
