import { ReactNode } from 'react'
// import banner from '/'

type FormWrapperProps = {
  title: string
  description?: string
  children: ReactNode
}

export function FormWrapper({ title, children, description }: FormWrapperProps) {
  return (
    <>

      <div className="container-overlay w-full">
        <div className="flex items-center justify-center flex-col">
          <h2 className="mainHeading">{title}</h2>
          <p className="description">{description}</p>
          {children}
        </div>
      </div>
    </>
  )
}
