1
0
forked from schulze/bam

styles, form, backend partial

This commit is contained in:
2024-10-18 13:12:19 +02:00
parent edd3be3659
commit 0b44dfef30
11 changed files with 530 additions and 71 deletions

17
app/sign-up/page.tsx Normal file
View File

@@ -0,0 +1,17 @@
import Image from "next/image";
import SignUp from "./sign-up-form";
export default function Page() {
return (
<div className="w-4/5 max-w-2xl mx-auto my-12">
<Image
src="/image/bam.png"
alt="Bangers and Mash GBG"
width={200}
height={200}
className="mx-auto"
/>
<SignUp />
</div>
);
}