tabby/ee/tabby-ui/app/auth/page.tsx

17 lines
371 B
TypeScript
Raw Normal View History

2023-12-05 06:34:02 +00:00
import { Metadata } from "next"
2023-12-05 07:52:57 +00:00
import Signup from "./components/signup"
2023-12-05 06:34:02 +00:00
export const metadata: Metadata = {
title: "Authentication",
description: "Authentication forms built using the components.",
}
export default function AuthenticationPage() {
return (
<div className="flex flex-col items-center justify-center flex-1">
2023-12-05 07:52:57 +00:00
<Signup />
2023-12-05 06:34:02 +00:00
</div>
)
}