* fix: layout structure in admin * fix: layout structure in admin * fix: delete layout files * chore: updated form related info * fix: admin import statements * fix: general page unauthorized flickering issue * chore: logs related * chore: lock file updates * fix: build errors * fix: coderabbit suggestions
10 lines
274 B
TypeScript
10 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}</>;
|
|
}
|