14 lines
380 B
TypeScript
14 lines
380 B
TypeScript
import type { Metadata } from "next"
|
|||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: "Sign in to Property Management Network",
|
||
|
|
}
|
||
|
|
|
||
|
|
export default function AuthLayout({ children }: { children: React.ReactNode }) {
|
||
|
|
return (
|
||
|
|
<div className="min-h-screen flex items-center justify-center bg-[#09090b] px-4">
|
||
|
|
<div className="w-full max-w-md">{children}</div>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|