17 lines
461 B
TypeScript
17 lines
461 B
TypeScript
import { RegisterForm } from "@/components/auth/register-form";
|
|
import { siteConfig } from "@/config/site";
|
|
import { constructMetadata } from "@/lib/metadata";
|
|
import { Routes } from "@/routes";
|
|
|
|
export const metadata = constructMetadata({
|
|
title: "Register",
|
|
description: "Create an account to get started",
|
|
canonicalUrl: `${siteConfig.url}${Routes.Register}`,
|
|
});
|
|
|
|
const RegisterPage = () => {
|
|
return <RegisterForm />;
|
|
};
|
|
|
|
export default RegisterPage;
|