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

19 lines
363 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 (
<>
<div className="p-3 md:mt-32">{children}</div>
2024-10-19 16:37:40 -04:00
</>
);
}