clean up naming and add /settings/ to path

This commit is contained in:
Milo Schwartz 2024-11-02 15:44:48 -04:00
parent c05342dd25
commit 54ba205fc0
No known key found for this signature in database
34 changed files with 523 additions and 784 deletions

View file

@ -1,3 +1,10 @@
import { Metadata } from "next";
export const metadata: Metadata = {
title: `Auth - Pangolin`,
description: "",
};
type AuthLayoutProps = {
children: React.ReactNode;
};
@ -5,9 +12,7 @@ type AuthLayoutProps = {
export default async function AuthLayout({ children }: AuthLayoutProps) {
return (
<>
<div className="p-3 md:mt-32">
{children}
</div>
<div className="p-3 md:mt-32">{children}</div>
</>
);
}