import type { ReactNode } from 'react'; import { MessageSquare } from 'lucide-react'; import { IS_PLATFORM } from '../../../constants/config'; type AuthScreenLayoutProps = { title: string; description: string; children: ReactNode; footerText: string; logo?: ReactNode; }; export default function AuthScreenLayout({ title, description, children, footerText, logo, }: AuthScreenLayoutProps) { return (
{description}
{footerText}