import React from 'react'; interface PayPageLayoutProps { isDark: boolean; isEmbedded?: boolean; maxWidth?: 'sm' | 'full'; title: string; subtitle: string; actions?: React.ReactNode; children: React.ReactNode; } export default function PayPageLayout({ isDark, isEmbedded = false, maxWidth = 'full', title, subtitle, actions, children, }: PayPageLayoutProps) { return (
{subtitle}