/** * QwickApps Framework Components - Client Boundary * * This file serves as the client boundary for all QwickApps Framework components. * Instead of creating individual wrapper files, we export all framework components * from a single 'use client' file. * * Why this pattern? * - Next.js 15 defaults to Server Components * - Framework components use React hooks (require client-side) * - Single client boundary is more maintainable than many wrapper files * * Usage: * import { HeroBlock, Section, GridLayout } from './components/framework'; * * Copyright (c) 2025 QwickApps.com. All rights reserved. */ export { HeroBlock, Section, GridLayout, GridCell, Text, Button, FeatureCard, FeatureGrid, Markdown, Footer, FormField, FormSelect, FormCheckbox, Captcha, iconMap, ProductCard, type HeroBlockProps, type SectionProps, type GridLayoutProps, type GridCellProps, type TextProps, type ButtonProps, type FeatureCardProps, type FeatureGridProps, type MarkdownProps, type FormFieldProps, type FormSelectProps, type FormCheckboxProps, type CaptchaProps, type CaptchaProvider, } from '@qwickapps/react-framework'; //# sourceMappingURL=framework.d.ts.map