mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
12 lines
248 B
TypeScript
12 lines
248 B
TypeScript
import { Metadata } from "next";
|
|
// components
|
|
import { InstanceSetupForm } from "@/components/instance";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Setup - God Mode",
|
|
};
|
|
|
|
export default function SetupPage() {
|
|
return <InstanceSetupForm />;
|
|
}
|