mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-29 14:18:26 +02:00
20 lines
417 B
TypeScript
20 lines
417 B
TypeScript
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: `Auth - Pangolin`,
|
|
description: "",
|
|
};
|
|
|
|
type AuthLayoutProps = {
|
|
children: React.ReactNode;
|
|
};
|
|
|
|
export default async function AuthLayout({ children }: AuthLayoutProps) {
|
|
return (
|
|
<>
|
|
<div className="w-full max-w-md mx-auto p-3 md:mt-32">
|
|
{children}
|
|
</div>
|
|
</>
|
|
);
|
|
}
|