'use client' import React from 'react' import { Link } from '../common/Link' export interface AuthLayoutProps { children: React.ReactNode title?: string subtitle?: string } export const AuthLayout = ({ children, title, subtitle }: AuthLayoutProps) => { return (
{/* Simple header with logo */}

MoreThanADiagnosis

{/* Main content */}
{/* Title and subtitle */} {(title || subtitle) && (
{title && (

{title}

)} {subtitle && (

{subtitle}

)}
)} {/* Form container */}
{children}
{/* Simple footer */}
) }