auth move
This commit is contained in:
21
src/app/(auth)/layout.tsx
Normal file
21
src/app/(auth)/layout.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user