* Init Dashboard V2 * Update README.md * use dedicated vars and prevent docker push on PRs --------- Co-authored-by: Maycon Santos <mlsmaycon@gmail.com>
9 lines
248 B
TypeScript
9 lines
248 B
TypeScript
import { globalMetaTitle } from "@utils/meta";
|
|
import type { Metadata } from "next";
|
|
import BlankLayout from "@/layouts/BlankLayout";
|
|
|
|
export const metadata: Metadata = {
|
|
title: `Users - Team - ${globalMetaTitle}`,
|
|
};
|
|
export default BlankLayout;
|