import type React        from "react"
import type { Metadata } from "next"
import { AuthLayout } from "@/components/layout/auth"

export const metadata: Metadata = {
  title:       "Sign Up - Kokotrack",
  description: "Sign up for your Kokotrack account to access your binary trading journal and analytics."
}

export const dynamic = 'force-dynamic';

export default function Layout({
  children,
}: {
  children: React.ReactNode
}) {
  return (
    <AuthLayout>
      {children}
    </AuthLayout>
  )
}
