import Link from "next/link"; import Image from "next/image"; import { CodeIcon } from "lucide-react"; interface AuthLayoutProps { children: React.ReactNode; } export default async function AuthLayout({ children }: AuthLayoutProps) { return (
Judge4c
{children}
Image
); }