17 lines
371 B
TypeScript
17 lines
371 B
TypeScript
import { Metadata } from "next"
|
|
|
|
import Signup from "./components/signup"
|
|
|
|
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">
|
|
<Signup />
|
|
</div>
|
|
)
|
|
}
|