21 lines
		
	
	
		
			471 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			471 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
 | 
						|
        priority
 | 
						|
        unoptimized
 | 
						|
        src="/image/bam.svg"
 | 
						|
        alt="Bangers and Mash GBG"
 | 
						|
        width={200}
 | 
						|
        height={200}
 | 
						|
        className="mx-auto my-8"
 | 
						|
      />
 | 
						|
      <h1 className="mb-4 text-xl">Sign up to our members list here</h1>
 | 
						|
      <SignUp />
 | 
						|
    </div>
 | 
						|
  );
 | 
						|
}
 |