Files
thoughts/thoughts-frontend/app/(auth)/layout.tsx

13 lines
239 B
TypeScript

// app/(auth)/layout.tsx
export default function AuthLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<div className="flex items-center justify-center min-h-screen bg-gray-100">
{children}
</div>
);
}