import type { Metadata } from "next" import Image from "next/image" import Link from "next/link" import logo from "@/app/icon.png" export const metadata: Metadata = { title: "Authentication", } export default function AuthLayout({ children, }: { children: React.ReactNode }) { return (