import classNames from 'classnames' type InterstitialProps = { className?: string contentClassName?: string children: React.ReactNode showLogo: boolean title?: string } export function Interstitial({ className, contentClassName, children, showLogo, title, }: InterstitialProps) { return (
{showLogo && ( Overleaf )} {title &&

{title}

}
{children}
) }