MCPcopy Create free account
hub / github.com/chiragksharma/BuildFast / PricingConfig

Interface PricingConfig

src/config/configTypes.ts:88–126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86}
87
88export interface PricingConfig {
89 sectionId: string;
90 backgroundColor: string;
91 header: {
92 title: string;
93 titleClass: string;
94 heading: string;
95 headingClass: string;
96 offer: {
97 text: string;
98 textClass: string;
99 highlighted_text: string;
100 };
101 };
102 plans: {
103 name: string;
104 originalPrice: string;
105 discountedPrice: string;
106 currency: string;
107 popular: boolean;
108 features: { [key: string]: Feature };
109 buttonText: string;
110 btnLink: string;
111 buttonClass: string;
112 note: string;
113 noteClass: string;
114 badge?: {
115 text: string;
116 badgeClass: string;
117 };
118 }[];
119 testimonial: {
120 text: string;
121 author: string;
122 badge: string;
123 badgeClass: string;
124 containerClass: string;
125 };
126}
127
128export interface TestimonialsGridConfig {
129 tweetLink: string | null;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected