import type { Metadata } from "next" import { Lock } from "lucide-react" import Link from "next/link" export const metadata: Metadata = { title: "Authentication", } export default function AuthLayout({ children, }: { children: React.ReactNode }) { return (
{/* Background decorative orbs */}
{/* Auth card */}
{/* Logo */} DeckyVault {children}
) }