Some checks failed
lint / lint (push) Has been cancelled
test / unit (push) Has been cancelled
test / integration (push) Has been cancelled
lint / lint (pull_request) Has been cancelled
test / unit (pull_request) Has been cancelled
test / integration (pull_request) Has been cancelled
19 lines
340 B
TypeScript
19 lines
340 B
TypeScript
// app/(auth)/layout.tsx
|
|
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
openGraph: { type: "website" },
|
|
};
|
|
|
|
export default function AuthLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<div className="flex items-center justify-center min-h-screen">
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|