auth move

This commit is contained in:
pradeepkumar
2026-01-11 21:21:34 +05:30
parent 4350a3fd4f
commit c8d414ccd6
11 changed files with 622 additions and 649 deletions

21
src/app/(auth)/layout.tsx Normal file
View File

@@ -0,0 +1,21 @@
export default function AuthLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<div className="min-h-screen flex items-center justify-center bg-gradient-to-b from-[#c4d9d4] to-[#f0f5fc] py-12 px-4">
<div className="w-full max-w-[510px]">
{/* Logo */}
<div className="text-center mb-4">
<img
src="/assets/logo.svg"
alt="RE-QuestN"
className="h-8 mx-auto"
/>
</div>
{children}
</div>
</div>
);
}