forked from github/plane
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 />;
|
|
}
|