mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
15 lines
410 B
TypeScript
15 lines
410 B
TypeScript
import {PageParams} from "@/types/next";
|
|
import {RegisterForm} from "@/components/wrappers/auth/register/register-form/register-form";
|
|
import {Metadata} from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Register",
|
|
};
|
|
|
|
export default async function RoutePage(props: PageParams<{}>) {
|
|
return (
|
|
<div className="mx-auto grid w-full gap-6">
|
|
<RegisterForm/>
|
|
</div>
|
|
)
|
|
} |