import type { Metadata } from 'next'

export const metadata: Metadata = {
  title: 'Sign In — CahooTravel',
  description: 'Sign in to your CahooTravel account to compare hotel prices and find hidden travel deals.',
  robots: { index: false, follow: false },
}

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