import type { ReactNode } from 'react'; import { LoginNavbar } from './login-navbar'; import { LogoSquare } from './logo'; interface PublicPageCardProps { title: string; description?: ReactNode; children?: ReactNode; showFooter?: boolean; } export function PublicPageCard({ title, description, children, showFooter = true, }: PublicPageCardProps) { return (
{title}
{description && (
{description}
)}
{!!children &&
{children}
}
{showFooter && (

Powered by{' '} OpenPanel.dev {' ยท '} Try it for free today!

)}
); }