sipher/app/(auth-pages)/layout.tsx
2024-12-10 16:52:53 +00:00

9 lines
189 B
TypeScript

export default async function Layout({
children,
}: {
children: React.ReactNode;
}) {
return (
<div className="max-w-7xl flex flex-col gap-12 items-start">{children}</div>
);
}