bam/app/sign-up/page.tsx
Felix Schulze 4db42044ce
All checks were successful
Lint / Lint (push) Successful in 1m8s
styles, form, backend partial
2024-10-18 13:12:19 +02:00

18 lines
356 B
TypeScript

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