mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-29 22:19:31 +02:00
clean up naming and add /settings/ to path
This commit is contained in:
parent
c05342dd25
commit
54ba205fc0
34 changed files with 523 additions and 784 deletions
|
@ -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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue