Files
property-management-network/app/(auth)/layout.tsx
T

14 lines
380 B
TypeScript
Raw Normal View History

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>
)
}