feat: add title to submit page

This commit is contained in:
trafficlunar 2025-04-06 23:01:50 +01:00
parent 4460290e6b
commit 03689b4f26

View file

@ -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>
);
}