forked from github/plane
12 lines
346 B
TypeScript
12 lines
346 B
TypeScript
import { ReactNode } from "react";
|
|
import { Metadata } from "next";
|
|
import { AdminLayout } from "@/layouts/admin-layout";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Authentication Settings - God Mode",
|
|
};
|
|
|
|
export default function AuthenticationLayout({ children }: { children: ReactNode }) {
|
|
return <AdminLayout>{children}</AdminLayout>;
|
|
}
|