|
| 1 | +export const internationalTiers = [ |
| 2 | + { |
| 3 | + name: 'Diamond', |
| 4 | + className: 'diamond', |
| 5 | + price: 'USD 5,000', |
| 6 | + description: 'The ultimate sponsorship package for maximum visibility and impact.', |
| 7 | + features: [ |
| 8 | + 'Premium booth placement', |
| 9 | + 'Keynote speaking opportunity', |
| 10 | + '2 speaking slots', |
| 11 | + '10 conference tickets', |
| 12 | + 'Large branding on signage & materials', |
| 13 | + 'Top-tier logo placement on website', |
| 14 | + 'Dedicated sponsor page on website', |
| 15 | + 'Mention in all press releases', |
| 16 | + ], |
| 17 | + btnClass: 'btn btn-primary btn-diamond', |
| 18 | + btnStyle: { width: '100%' }, |
| 19 | + }, |
| 20 | + { |
| 21 | + name: 'Gold', |
| 22 | + className: 'gold', |
| 23 | + price: 'USD 3,500', |
| 24 | + description: 'Excellent visibility and engagement opportunities.', |
| 25 | + features: [ |
| 26 | + 'Exhibition booth', |
| 27 | + '1 speaking slot', |
| 28 | + '5 conference tickets', |
| 29 | + 'Medium branding on signage & materials', |
| 30 | + 'Tier 2 logo placement on website', |
| 31 | + 'Mention in press releases', |
| 32 | + ], |
| 33 | + btnClass: 'btn btn-primary btn-gold', |
| 34 | + btnStyle: { width: '100%', background: 'var(--color-dark)', border: '1px solid var(--color-gold)', color: 'var(--color-gold)' }, |
| 35 | + }, |
| 36 | + { |
| 37 | + name: 'Silver', |
| 38 | + className: 'silver', |
| 39 | + price: 'USD 2,000', |
| 40 | + description: 'Great value for companies looking to support the community.', |
| 41 | + features: [ |
| 42 | + '1 speaking slot', |
| 43 | + '3 conference tickets', |
| 44 | + 'Tier 3 logo placement on website', |
| 45 | + ], |
| 46 | + btnClass: 'btn btn-primary btn-silver', |
| 47 | + btnStyle: { width: '100%', background: 'var(--color-dark)', border: '1px solid var(--color-text-secondary)' }, |
| 48 | + }, |
| 49 | + { |
| 50 | + name: 'Bronze', |
| 51 | + className: 'bronze', |
| 52 | + price: 'USD 1,000', |
| 53 | + description: 'Ideal for startups and smaller organizations.', |
| 54 | + features: [ |
| 55 | + '1 speaking slot', |
| 56 | + '1 conference ticket', |
| 57 | + 'Company logo on website', |
| 58 | + 'Branding on select materials', |
| 59 | + ], |
| 60 | + btnClass: 'btn btn-primary btn-bronze', |
| 61 | + btnStyle: { width: '100%', background: 'var(--color-dark)', border: '1px solid #cd7f32', color: '#cd7f32' }, |
| 62 | + }, |
| 63 | + { |
| 64 | + name: 'Community', |
| 65 | + className: 'community', |
| 66 | + price: 'USD 500', |
| 67 | + description: 'Ideal for startups and smaller organizations.', |
| 68 | + features: [ |
| 69 | + '1 conference ticket', |
| 70 | + 'Company logo on website', |
| 71 | + 'Branding on select materials', |
| 72 | + ], |
| 73 | + btnClass: 'btn btn-primary', |
| 74 | + btnStyle: { width: '100%', background: 'var(--color-dark)', border: '1px solid var(--color-green)', color: 'var(--color-green)' }, |
| 75 | + }, |
| 76 | +]; |
| 77 | + |
| 78 | +export const localTiers = [ |
| 79 | + { |
| 80 | + name: 'Diamond', |
| 81 | + className: 'diamond', |
| 82 | + price: 'XAF 1,000,000', |
| 83 | + priceNote: 'Approx. $2,500 USD', |
| 84 | + description: 'The ultimate sponsorship package for maximum visibility and impact.', |
| 85 | + features: [ |
| 86 | + 'Premium booth placement', |
| 87 | + 'Keynote speaking opportunity', |
| 88 | + '2 speaking slots', |
| 89 | + '10 conference tickets', |
| 90 | + 'Large branding on signage & materials', |
| 91 | + 'Top-tier logo placement on website', |
| 92 | + 'Dedicated sponsor page on website', |
| 93 | + 'Mention in all press releases', |
| 94 | + ], |
| 95 | + btnClass: 'btn btn-primary btn-diamond', |
| 96 | + btnStyle: { width: '100%' }, |
| 97 | + }, |
| 98 | + { |
| 99 | + name: 'Gold', |
| 100 | + className: 'gold', |
| 101 | + price: 'XAF 500,000', |
| 102 | + priceNote: 'Approx. $1,000 USD', |
| 103 | + description: 'Excellent visibility and engagement opportunities.', |
| 104 | + features: [ |
| 105 | + 'Exhibition booth', |
| 106 | + '1 speaking slot', |
| 107 | + '5 conference tickets', |
| 108 | + 'Medium branding on signage & materials', |
| 109 | + 'Tier 2 logo placement on website', |
| 110 | + 'Mention in press releases', |
| 111 | + ], |
| 112 | + btnClass: 'btn btn-primary btn-gold', |
| 113 | + btnStyle: { width: '100%', background: 'var(--color-dark)', border: '1px solid var(--color-gold)', color: 'var(--color-gold)' }, |
| 114 | + }, |
| 115 | + { |
| 116 | + name: 'Silver', |
| 117 | + className: 'silver', |
| 118 | + price: 'XAF 375,000', |
| 119 | + priceNote: 'Approx. $700 USD', |
| 120 | + description: 'Great value for companies looking to support the community.', |
| 121 | + features: [ |
| 122 | + '1 speaking slot', |
| 123 | + '3 conference tickets', |
| 124 | + 'Conference signage with branding', |
| 125 | + 'Tier 3 logo placement on website', |
| 126 | + ], |
| 127 | + btnClass: 'btn btn-primary btn-silver', |
| 128 | + btnStyle: { width: '100%', background: 'var(--color-dark)', border: '1px solid var(--color-text-secondary)' }, |
| 129 | + }, |
| 130 | + { |
| 131 | + name: 'Bronze', |
| 132 | + className: 'bronze', |
| 133 | + price: 'XAF 100,000', |
| 134 | + priceNote: 'Approx. $200 USD', |
| 135 | + description: 'Ideal for startups and smaller organizations.', |
| 136 | + features: [ |
| 137 | + '1 speaking slot', |
| 138 | + '1 conference ticket', |
| 139 | + 'Company logo on website', |
| 140 | + 'Branding on select materials', |
| 141 | + ], |
| 142 | + btnClass: 'btn btn-primary btn-bronze', |
| 143 | + btnStyle: { width: '100%', background: 'var(--color-dark)', border: '1px solid #cd7f32', color: '#cd7f32' }, |
| 144 | + }, |
| 145 | + { |
| 146 | + name: 'Community', |
| 147 | + className: 'community', |
| 148 | + price: 'XAF 50,000', |
| 149 | + priceNote: 'Approx. $100 USD', |
| 150 | + description: 'Ideal for startups and smaller organizations.', |
| 151 | + features: [ |
| 152 | + '1 conference ticket', |
| 153 | + 'Company logo on website', |
| 154 | + 'Branding on select materials', |
| 155 | + ], |
| 156 | + btnClass: 'btn btn-primary', |
| 157 | + btnStyle: { width: '100%', background: 'var(--color-dark)', border: '1px solid var(--color-green)', color: 'var(--color-green)' }, |
| 158 | + }, |
| 159 | +]; |
0 commit comments