7 lines
156 B
TypeScript
7 lines
156 B
TypeScript
import LoginForm from "@/components/auth/login-form";
|
|
import Image from "next/image";
|
|
|
|
export default async function LoginPage() {
|
|
return <LoginForm />;
|
|
}
|