import type { Metadata } from "next";
import { SignupForm } from "./_component/signup-form";

export const metadata: Metadata = {
  title: "Sign Up | E-Library",
  description: "Create a Federal Polytechnic Bali E-Library account.",
};

export default function Page() {
  return (
    <div className="flex min-h-svh w-full items-center justify-center p-6 md:p-10">
      <div className="w-full max-w-sm">
        <SignupForm />
      </div>
    </div>
  )
}
