import classNames from "classnames"; import { HeadSeo, Logo } from "@calcom/ui"; import Loader from "@components/Loader"; interface Props { title: string; description: string; footerText?: React.ReactNode | string; showLogo?: boolean; heading?: string; loading?: boolean; } export default function AuthContainer(props: React.PropsWithChildren) { return (
{props.showLogo && }
{props.heading &&

{props.heading}

}
{props.loading && (
)}
{props.children}
{props.footerText}
); }