bam/app/sign-up/page.tsx

19 lines
432 B
TypeScript
Raw Permalink Normal View History

2024-10-18 13:12:19 +02:00
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}
2024-10-18 14:20:58 +02:00
className="mx-auto my-8"
2024-10-18 13:12:19 +02:00
/>
2024-10-18 14:20:58 +02:00
<h1 className="mb-4 text-xl">Sign up to our guest list here</h1>
2024-10-18 13:12:19 +02:00
<SignUp />
</div>
);
}