import classNames from 'classnames' import overleafLogo from '@/shared/svgs/overleaf.svg' 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}
) }