mirror of
https://github.com/makeplane/plane.git
synced 2025-12-16 11:57:56 +01:00
11 lines
274 B
TypeScript
11 lines
274 B
TypeScript
import { ReactNode } from "react";
|
|
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "GitLab Authentication - God Mode",
|
|
};
|
|
|
|
export default function GitlabAuthenticationLayout({ children }: { children: ReactNode }) {
|
|
return <>{children}</>;
|
|
}
|