mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
11 lines
267 B
TypeScript
11 lines
267 B
TypeScript
import { ReactNode } from "react";
|
|
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Artificial Intelligence Settings - God Mode",
|
|
};
|
|
|
|
export default function AILayout({ children }: { children: ReactNode }) {
|
|
return <>{children}</>;
|
|
}
|