Files
sarlink-portal/app/(auth)/auth/layout.tsx
i701 9b2f2c1528
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 11m8s
add admin checks for admin pages and run biome formating 🔨
2025-07-25 13:31:12 +05:00

12 lines
230 B
TypeScript

export default function AuthLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<div className="bg-gray-100 dark:bg-black w-full h-screen flex items-center justify-center font-sans">
{children}
</div>
);
}