import type React from "react";
import type { Metadata } from "next";

export const metadata: Metadata = {
  title:       "Email Verification",
  description: "Verify your email to get started with Kokotrack.",
}

export default function Layout({ children }: { children: React.ReactNode }) {
  return (
    <div className="min-h-screen flex items-center justify-center bg-linear-to-br from-background via-background to-primary/5 p-4">
      {children}
    </div>
  )
}
