fosrl.pangolin/src/app/auth/layout.tsx

21 lines
417 B
TypeScript
Raw Normal View History

import { Metadata } from "next";
export const metadata: Metadata = {
title: `Auth - Pangolin`,
description: "",
};
2024-10-19 16:37:40 -04:00
type AuthLayoutProps = {
children: React.ReactNode;
};
export default async function AuthLayout({ children }: AuthLayoutProps) {
return (
<>
2024-11-23 20:08:56 -05:00
<div className="w-full max-w-md mx-auto p-3 md:mt-32">
{children}
</div>
2024-10-19 16:37:40 -04:00
</>
);
}