"use client"; import { usePathname } from "next/navigation"; import Link from "next/link"; import Image from "next/image"; import slogan from "@/public/images/slogan.png"; export default function LoginLayout({ children }) { const pathname = usePathname(); return (
手机号登录 账号密码登录
{children}
); }