@mdxui/named 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,221 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { IconType } from 'react-icons';
3
+
4
+ interface HeroProps {
5
+ badgeEmoji?: string;
6
+ badgeText?: string;
7
+ badgeHref?: string;
8
+ heading?: string;
9
+ description?: string;
10
+ ctaText?: string;
11
+ ctaHref?: string;
12
+ ctaVariant?: 'default' | 'secondary' | 'outline' | 'ghost';
13
+ rightImageSrc?: string;
14
+ rightImageAlt?: string;
15
+ rightImageSizes?: string;
16
+ showIconOverlay?: boolean;
17
+ marqueeTitle?: string;
18
+ marqueeImages?: string[];
19
+ className?: string;
20
+ }
21
+ declare function Hero({ badgeEmoji, badgeText, badgeHref, heading, description, ctaText, ctaHref, ctaVariant, rightImageSrc, rightImageAlt, rightImageSizes, showIconOverlay: _showIconOverlay, marqueeTitle, marqueeImages, className, }: HeroProps): react_jsx_runtime.JSX.Element;
22
+
23
+ interface FeatureItem {
24
+ text: string;
25
+ }
26
+ interface Feature {
27
+ title: string;
28
+ description: string;
29
+ items: FeatureItem[];
30
+ code: string;
31
+ badge: string;
32
+ }
33
+ interface FeaturesProps {
34
+ heading?: string;
35
+ description?: string;
36
+ features?: Feature[];
37
+ className?: string;
38
+ }
39
+ declare function Features({ heading, description, features, className }: FeaturesProps): react_jsx_runtime.JSX.Element;
40
+
41
+ interface PricingFeature {
42
+ text: string;
43
+ }
44
+ interface PricingProps {
45
+ heading?: string;
46
+ subheading?: string;
47
+ price?: string;
48
+ priceUnit?: string;
49
+ trialText?: string;
50
+ ctaText?: string;
51
+ ctaHref?: string;
52
+ featuresHeading?: string;
53
+ features?: PricingFeature[];
54
+ backgroundColor?: string;
55
+ securityNote?: string;
56
+ className?: string;
57
+ }
58
+ declare function Pricing({ heading, subheading, price, priceUnit, trialText, ctaText, ctaHref, featuresHeading, features, backgroundColor, securityNote, className, }: PricingProps): react_jsx_runtime.JSX.Element;
59
+
60
+ interface PricingTierFeature {
61
+ text: string;
62
+ }
63
+ interface PricingTier {
64
+ title: string;
65
+ description: string;
66
+ price: string;
67
+ priceUnit: string;
68
+ ctaText: string;
69
+ ctaVariant?: 'primary' | 'secondary';
70
+ ctaHref?: string;
71
+ features: PricingTierFeature[];
72
+ image?: string;
73
+ imageAlt?: string;
74
+ featured?: boolean;
75
+ }
76
+ interface PricingTiersProps {
77
+ heading?: string;
78
+ subheading?: string;
79
+ tiers?: PricingTier[];
80
+ backgroundColor?: string;
81
+ securityNote?: string;
82
+ className?: string;
83
+ }
84
+ declare function PricingTiers({ heading, subheading, tiers, backgroundColor, securityNote, className, }: PricingTiersProps): react_jsx_runtime.JSX.Element;
85
+
86
+ interface CTAButton {
87
+ text: string;
88
+ href: string;
89
+ variant?: 'primary' | 'secondary';
90
+ showArrow?: boolean;
91
+ }
92
+ interface CTAProps {
93
+ heading?: string;
94
+ subheading?: string;
95
+ buttons?: CTAButton[];
96
+ backgroundColor?: 'light' | 'blue' | 'green' | 'purple' | 'orange';
97
+ className?: string;
98
+ }
99
+ declare function CTA({ heading, subheading, buttons, backgroundColor, className }: CTAProps): react_jsx_runtime.JSX.Element;
100
+
101
+ interface FAQItem {
102
+ question: string;
103
+ answer: string;
104
+ }
105
+ interface FAQProps {
106
+ heading?: string;
107
+ faqs?: FAQItem[];
108
+ backgroundColor?: string;
109
+ className?: string;
110
+ }
111
+ declare function FAQ({ heading, faqs, backgroundColor, className }: FAQProps): react_jsx_runtime.JSX.Element;
112
+
113
+ interface WorkflowItem {
114
+ icon: IconType;
115
+ label: string;
116
+ }
117
+ interface ProblemProps {
118
+ heading?: string;
119
+ headingHighlight?: string;
120
+ workflows?: WorkflowItem[];
121
+ subheading?: string;
122
+ subheadingHighlight?: string;
123
+ highlightColor?: string;
124
+ marqueeDuration?: string;
125
+ marqueeGap?: string;
126
+ backgroundColor?: string;
127
+ className?: string;
128
+ }
129
+ declare function Problem({ heading: _heading, workflows, subheading, subheadingHighlight, highlightColor, marqueeDuration, marqueeGap, backgroundColor, className, }: ProblemProps): react_jsx_runtime.JSX.Element;
130
+
131
+ interface NavLink {
132
+ label: string;
133
+ href: string;
134
+ }
135
+ interface NavigationProps {
136
+ logo?: string | React.ReactNode;
137
+ logoHref?: string;
138
+ links?: NavLink[];
139
+ ctaText?: string;
140
+ ctaHref?: string;
141
+ ctaVariant?: 'default' | 'secondary' | 'outline' | 'ghost' | 'link' | 'destructive';
142
+ className?: string;
143
+ maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | '7xl' | 'full';
144
+ sticky?: boolean;
145
+ showScrollEffect?: boolean;
146
+ }
147
+ declare function Navigation({ logo, logoHref, links, ctaText, ctaHref, ctaVariant, className, maxWidth, sticky, showScrollEffect, }: NavigationProps): react_jsx_runtime.JSX.Element;
148
+
149
+ interface SocialLink {
150
+ href: string;
151
+ icon: IconType;
152
+ label: string;
153
+ }
154
+ interface QuickLink {
155
+ href: string;
156
+ label: string;
157
+ }
158
+ interface FooterProps {
159
+ logo?: string;
160
+ description?: string;
161
+ socialLinks?: SocialLink[];
162
+ quickLinks?: QuickLink[];
163
+ contactTitle?: string;
164
+ emailPlaceholder?: string;
165
+ onEmailSubmit?: (email: string) => void;
166
+ copyrightText?: string;
167
+ showThemeToggle?: boolean;
168
+ className?: string;
169
+ }
170
+ declare function Footer({ logo, description, socialLinks, quickLinks, contactTitle, emailPlaceholder, onEmailSubmit, copyrightText, className, }: FooterProps): react_jsx_runtime.JSX.Element;
171
+
172
+ interface FormField {
173
+ id: string;
174
+ label: string;
175
+ type: 'text' | 'email' | 'tel' | 'textarea';
176
+ placeholder?: string;
177
+ required?: boolean;
178
+ }
179
+ interface ContactProps {
180
+ heading?: string;
181
+ subheading?: string;
182
+ fields?: FormField[];
183
+ submitButtonText?: string;
184
+ successMessage?: string;
185
+ errorMessage?: string;
186
+ onSubmit?: (data: Record<string, string>) => Promise<void> | void;
187
+ backgroundColor?: string;
188
+ className?: string;
189
+ }
190
+ declare function Contact({ heading, subheading, fields, submitButtonText, successMessage, errorMessage, onSubmit, backgroundColor, className, }: ContactProps): react_jsx_runtime.JSX.Element;
191
+
192
+ interface IntegrationNode {
193
+ type: 'image' | 'icon' | 'component';
194
+ content: string | React.ReactNode;
195
+ alt?: string;
196
+ className?: string;
197
+ }
198
+ interface AnimationConfig {
199
+ startYOffset?: number;
200
+ endYOffset?: number;
201
+ curvature?: number;
202
+ duration?: number;
203
+ reverse?: boolean;
204
+ }
205
+ interface IntegrationProps {
206
+ title?: string;
207
+ description?: string;
208
+ buttonText?: string;
209
+ buttonHref?: string;
210
+ leftNode: IntegrationNode;
211
+ rightNode: IntegrationNode;
212
+ beamAnimations?: AnimationConfig[];
213
+ gridPatternWidth?: number;
214
+ gridPatternHeight?: number;
215
+ maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | '7xl';
216
+ className?: string;
217
+ contentOrder?: 'left' | 'right';
218
+ }
219
+ declare function Integration({ title, description, buttonText, buttonHref, leftNode, rightNode, beamAnimations, gridPatternWidth, gridPatternHeight, maxWidth, className, contentOrder, }: IntegrationProps): react_jsx_runtime.JSX.Element;
220
+
221
+ export { type AnimationConfig, CTA, type CTAButton, type CTAProps, Contact, type ContactProps, FAQ, type FAQItem, type FAQProps, type Feature, type FeatureItem, Features, type FeaturesProps, Footer, type FooterProps, type FormField, Hero, type HeroProps, Integration, type IntegrationNode, type IntegrationProps, type NavLink, Navigation, type NavigationProps, Pricing, type PricingFeature, type PricingProps, type PricingTier, type PricingTierFeature, PricingTiers, type PricingTiersProps, Problem, type ProblemProps, type QuickLink, type SocialLink, type WorkflowItem };