🚩 (flags) create signup provision page

This commit is contained in:
2025-10-03 00:29:17 +07:00
parent a2216b44db
commit bf286af235
3 changed files with 79 additions and 2 deletions

View File

@ -0,0 +1,22 @@
"use client";
import React from "react";
import ProvisionInput from "../components/ProvisionInput";
type Props = {
fullName: string;
};
const Provision = ({ fullName }: Props) => {
return (
<div className="pt-12 max-w-[480px] mx-auto">
<div className="text-3xl text-center">Hey, {fullName.split(" ")[0]}</div>
<p className="text-sm text-center font-light text-neutral-300 mt-2">
Just a few more steps to join the fun!
</p>
<ProvisionInput />
</div>
);
};
export default Provision;