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>
|
|
|
|
|
)
|
2023-12-05 06:36:49 +00:00
|
|
|
}
|