feat: add title to submit page
This commit is contained in:
parent
4460290e6b
commit
03689b4f26
1 changed files with 6 additions and 1 deletions
|
|
@ -7,5 +7,10 @@ export default async function SubmitPage() {
|
|||
|
||||
if (!session) redirect("/login");
|
||||
|
||||
return <SubmitForm />;
|
||||
return (
|
||||
<div>
|
||||
<h1 className="text-2xl font-bold text-center">Submit your Mii</h1>
|
||||
<SubmitForm />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue