Initial commit from Create Next App
This commit is contained in:
9
app/(auth-pages)/layout.tsx
Normal file
9
app/(auth-pages)/layout.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
export default async function Layout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<div className="max-w-7xl flex flex-col gap-12 items-start">{children}</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user