|
| 1 | +import { Metadata } from 'next' |
| 2 | +import HeroSimple from '@/components/HeroSimple' |
| 3 | +import CTA from '@/components/CTA' |
| 4 | + |
| 5 | +export const metadata: Metadata = { |
| 6 | + title: 'Pricing | Good Robot Co.', |
| 7 | + description: 'Transparent pricing for tech consulting, AI integration, custom development, and ongoing support. Solutions sized for small and mid-size businesses.', |
| 8 | + openGraph: { |
| 9 | + title: 'Pricing | Good Robot Co.', |
| 10 | + description: 'Transparent pricing for tech consulting, AI integration, custom development, and ongoing support. Solutions sized for small and mid-size businesses.', |
| 11 | + url: 'https://goodrobotco.com/pricing', |
| 12 | + type: 'website', |
| 13 | + images: [ |
| 14 | + { |
| 15 | + url: '/og-image.png', |
| 16 | + width: 1200, |
| 17 | + height: 630, |
| 18 | + alt: 'Good Robot Co. Pricing', |
| 19 | + }, |
| 20 | + ], |
| 21 | + }, |
| 22 | + twitter: { |
| 23 | + card: 'summary_large_image', |
| 24 | + title: 'Pricing | Good Robot Co.', |
| 25 | + description: 'Transparent pricing for tech consulting, AI integration, custom development, and ongoing support. Solutions sized for small and mid-size businesses.', |
| 26 | + images: ['/og-image.png'], |
| 27 | + }, |
| 28 | +} |
| 29 | + |
| 30 | +export default function Pricing() { |
| 31 | + return ( |
| 32 | + <> |
| 33 | + <HeroSimple |
| 34 | + title="Transparent Pricing" |
| 35 | + subtitle="No hidden fees, no surprise invoices. Here's what you can expect to invest when working with Good Robot Co." |
| 36 | + /> |
| 37 | + |
| 38 | + {/* Pricing Philosophy */} |
| 39 | + <section className="py-16 bg-white"> |
| 40 | + <div className="max-w-3xl mx-auto px-6"> |
| 41 | + <div className="border-l-4 border-coral pl-8"> |
| 42 | + <h2 className="text-2xl font-semibold mb-4">Simple, straightforward pricing</h2> |
| 43 | + <div className="space-y-4 text-charcoal-light mb-6"> |
| 44 | + <p>I keep pricing simple and accessible for small businesses. You know exactly what you're paying, and there are no hidden fees or surprise invoices.</p> |
| 45 | + <p>Every project includes planning, regular updates, and support after launch. If something's not clear, I'll explain it in plain English.</p> |
| 46 | + </div> |
| 47 | + <div> |
| 48 | + <p className="text-charcoal mb-4">Not sure which option fits? <a |
| 49 | + href="#contact" |
| 50 | + className="relative inline-block font-semibold text-coral hover:text-coral-hover transition-colors group" |
| 51 | + > |
| 52 | + Book a free call |
| 53 | + <svg className="absolute -bottom-1 left-0 w-full" viewBox="0 0 200 8" preserveAspectRatio="none"> |
| 54 | + <path |
| 55 | + d="M0,5 Q5,3 10,5 T20,5 T30,5 T40,5 T50,5 T60,5 T70,5 T80,5 T90,5 T100,5 T110,5 T120,5 T130,5 T140,5 T150,5 T160,5 T170,5 T180,5 T190,5 T200,5" |
| 56 | + stroke="currentColor" |
| 57 | + strokeWidth="2" |
| 58 | + fill="none" |
| 59 | + className="text-coral" |
| 60 | + /> |
| 61 | + </svg> |
| 62 | + </a></p> |
| 63 | + </div> |
| 64 | + </div> |
| 65 | + </div> |
| 66 | + </section> |
| 67 | + |
| 68 | + {/* Main Pricing Tiers */} |
| 69 | + <section className="py-20 bg-cream"> |
| 70 | + <div className="max-w-5xl mx-auto px-6"> |
| 71 | + <h2 className="text-3xl font-semibold mb-12 text-center">Three Simple Options</h2> |
| 72 | + |
| 73 | + <div className="grid md:grid-cols-3 gap-8"> |
| 74 | + |
| 75 | + {/* Small Projects */} |
| 76 | + <div className="bg-white rounded-2xl p-8 shadow-md hover:shadow-xl hover:-translate-y-2 transition-all duration-300"> |
| 77 | + <div className="w-16 h-16 bg-sage-light rounded-2xl flex items-center justify-center text-3xl mb-6">⚡</div> |
| 78 | + <h3 className="text-2xl font-semibold mb-2">Small Projects</h3> |
| 79 | + <div className="mb-6"> |
| 80 | + <span className="text-4xl font-bold text-charcoal">$1,500</span> |
| 81 | + <span className="text-charcoal-light"> – $3,000</span> |
| 82 | + </div> |
| 83 | + <p className="text-charcoal-light mb-6">Perfect for quick wins and getting started.</p> |
| 84 | + |
| 85 | + <div className="space-y-3 mb-8"> |
| 86 | + <p className="text-sm font-semibold text-charcoal mb-3">Good for:</p> |
| 87 | + <div className="flex gap-2 items-start"> |
| 88 | + <span className="text-sage flex-shrink-0 mt-0.5">✓</span> |
| 89 | + <span className="text-sm text-charcoal-light">Simple websites (Squarespace, Webflow)</span> |
| 90 | + </div> |
| 91 | + <div className="flex gap-2 items-start"> |
| 92 | + <span className="text-sage flex-shrink-0 mt-0.5">✓</span> |
| 93 | + <span className="text-sm text-charcoal-light">Basic automations (Zapier, Make)</span> |
| 94 | + </div> |
| 95 | + <div className="flex gap-2 items-start"> |
| 96 | + <span className="text-sage flex-shrink-0 mt-0.5">✓</span> |
| 97 | + <span className="text-sm text-charcoal-light">Quick fixes and improvements</span> |
| 98 | + </div> |
| 99 | + <div className="flex gap-2 items-start"> |
| 100 | + <span className="text-sage flex-shrink-0 mt-0.5">✓</span> |
| 101 | + <span className="text-sm text-charcoal-light">Tech consultation and planning</span> |
| 102 | + </div> |
| 103 | + </div> |
| 104 | + |
| 105 | + <p className="text-sm text-charcoal-light italic">Timeline: 1-2 weeks</p> |
| 106 | + </div> |
| 107 | + |
| 108 | + {/* Medium Projects */} |
| 109 | + <div className="bg-white rounded-2xl p-8 shadow-md hover:shadow-xl hover:-translate-y-2 transition-all duration-300 border-2 border-coral"> |
| 110 | + <div className="inline-block px-3 py-1 bg-coral text-white text-xs font-semibold rounded-full mb-4">Most Common</div> |
| 111 | + <div className="w-16 h-16 bg-coral/10 rounded-2xl flex items-center justify-center text-3xl mb-6">🛠️</div> |
| 112 | + <h3 className="text-2xl font-semibold mb-2">Medium Projects</h3> |
| 113 | + <div className="mb-6"> |
| 114 | + <span className="text-4xl font-bold text-charcoal">$3,000</span> |
| 115 | + <span className="text-charcoal-light"> – $6,000</span> |
| 116 | + </div> |
| 117 | + <p className="text-charcoal-light mb-6">Custom builds and integrations that make a real impact.</p> |
| 118 | + |
| 119 | + <div className="space-y-3 mb-8"> |
| 120 | + <p className="text-sm font-semibold text-charcoal mb-3">Good for:</p> |
| 121 | + <div className="flex gap-2 items-start"> |
| 122 | + <span className="text-sage flex-shrink-0 mt-0.5">✓</span> |
| 123 | + <span className="text-sm text-charcoal-light">Custom websites with CMS</span> |
| 124 | + </div> |
| 125 | + <div className="flex gap-2 items-start"> |
| 126 | + <span className="text-sage flex-shrink-0 mt-0.5">✓</span> |
| 127 | + <span className="text-sm text-charcoal-light">AI chatbots and assistants</span> |
| 128 | + </div> |
| 129 | + <div className="flex gap-2 items-start"> |
| 130 | + <span className="text-sage flex-shrink-0 mt-0.5">✓</span> |
| 131 | + <span className="text-sm text-charcoal-light">Process automation workflows</span> |
| 132 | + </div> |
| 133 | + <div className="flex gap-2 items-start"> |
| 134 | + <span className="text-sage flex-shrink-0 mt-0.5">✓</span> |
| 135 | + <span className="text-sm text-charcoal-light">Simple web apps and tools</span> |
| 136 | + </div> |
| 137 | + </div> |
| 138 | + |
| 139 | + <p className="text-sm text-charcoal-light italic">Timeline: 3-5 weeks</p> |
| 140 | + </div> |
| 141 | + |
| 142 | + {/* Ongoing Support */} |
| 143 | + <div className="bg-white rounded-2xl p-8 shadow-md hover:shadow-xl hover:-translate-y-2 transition-all duration-300"> |
| 144 | + <div className="w-16 h-16 bg-lavender-light rounded-2xl flex items-center justify-center text-3xl mb-6">🤝</div> |
| 145 | + <h3 className="text-2xl font-semibold mb-2">Ongoing Support</h3> |
| 146 | + <div className="mb-6"> |
| 147 | + <span className="text-charcoal-light text-base">Starting at</span> |
| 148 | + <div><span className="text-4xl font-bold text-charcoal">$300</span><span className="text-charcoal-light text-xl">/mo</span></div> |
| 149 | + </div> |
| 150 | + <p className="text-charcoal-light mb-6">Keep your tech running smoothly with regular help.</p> |
| 151 | + |
| 152 | + <div className="space-y-3 mb-8"> |
| 153 | + <p className="text-sm font-semibold text-charcoal mb-3">What's included:</p> |
| 154 | + <div className="flex gap-2 items-start"> |
| 155 | + <span className="text-sage flex-shrink-0 mt-0.5">✓</span> |
| 156 | + <span className="text-sm text-charcoal-light">Email/Slack support</span> |
| 157 | + </div> |
| 158 | + <div className="flex gap-2 items-start"> |
| 159 | + <span className="text-sage flex-shrink-0 mt-0.5">✓</span> |
| 160 | + <span className="text-sm text-charcoal-light">Monthly check-ins</span> |
| 161 | + </div> |
| 162 | + <div className="flex gap-2 items-start"> |
| 163 | + <span className="text-sage flex-shrink-0 mt-0.5">✓</span> |
| 164 | + <span className="text-sm text-charcoal-light">Bug fixes and updates</span> |
| 165 | + </div> |
| 166 | + <div className="flex gap-2 items-start"> |
| 167 | + <span className="text-sage flex-shrink-0 mt-0.5">✓</span> |
| 168 | + <span className="text-sm text-charcoal-light">Small improvements</span> |
| 169 | + </div> |
| 170 | + </div> |
| 171 | + |
| 172 | + <p className="text-sm text-charcoal-light italic">Cancel anytime, no commitment</p> |
| 173 | + </div> |
| 174 | + |
| 175 | + </div> |
| 176 | + </div> |
| 177 | + </section> |
| 178 | + |
| 179 | + {/* Payment Terms */} |
| 180 | + <section className="py-16 bg-white"> |
| 181 | + <div className="max-w-4xl mx-auto px-6"> |
| 182 | + <h2 className="text-2xl font-semibold mb-8 text-center">How Payment Works</h2> |
| 183 | + |
| 184 | + <div className="grid md:grid-cols-3 gap-6"> |
| 185 | + <div className="text-center p-6 bg-cream rounded-2xl"> |
| 186 | + <div className="text-3xl mb-3">💳</div> |
| 187 | + <h3 className="font-semibold mb-2">Simple Payment</h3> |
| 188 | + <p className="text-sm text-charcoal-light">50% to start, 50% on completion. For larger projects, we can split into milestones.</p> |
| 189 | + </div> |
| 190 | + <div className="text-center p-6 bg-cream rounded-2xl"> |
| 191 | + <div className="text-3xl mb-3">⏱️</div> |
| 192 | + <h3 className="font-semibold mb-2">No Hourly Rates</h3> |
| 193 | + <p className="text-sm text-charcoal-light">Fixed prices mean no surprise invoices. You know exactly what you're paying upfront.</p> |
| 194 | + </div> |
| 195 | + <div className="text-center p-6 bg-cream rounded-2xl"> |
| 196 | + <div className="text-3xl mb-3">✅</div> |
| 197 | + <h3 className="font-semibold mb-2">Revisions Included</h3> |
| 198 | + <p className="text-sm text-charcoal-light">Two rounds of revisions are included in every project. You'll get it right.</p> |
| 199 | + </div> |
| 200 | + </div> |
| 201 | + </div> |
| 202 | + </section> |
| 203 | + |
| 204 | + {/* Pricing FAQ */} |
| 205 | + <section className="py-20 bg-cream"> |
| 206 | + <div className="max-w-3xl mx-auto px-6"> |
| 207 | + <h2 className="text-3xl font-semibold mb-12 text-center">Common Questions</h2> |
| 208 | + |
| 209 | + <div className="space-y-6"> |
| 210 | + <div className="bg-white rounded-2xl p-6 shadow-sm"> |
| 211 | + <h3 className="font-semibold text-lg mb-3">What if my project doesn't fit these tiers?</h3> |
| 212 | + <p className="text-charcoal-light">No problem. These are just guidelines. Book a free call and tell me what you need—I'll give you a custom quote that makes sense.</p> |
| 213 | + </div> |
| 214 | + |
| 215 | + <div className="bg-white rounded-2xl p-6 shadow-sm"> |
| 216 | + <h3 className="font-semibold text-lg mb-3">What's NOT included in these prices?</h3> |
| 217 | + <p className="text-charcoal-light">Third-party costs like domain names, hosting, or software subscriptions. I'll always flag these upfront. Most clients spend $10-50/month on these basics.</p> |
| 218 | + </div> |
| 219 | + |
| 220 | + <div className="bg-white rounded-2xl p-6 shadow-sm"> |
| 221 | + <h3 className="font-semibold text-lg mb-3">Can I see examples of your work?</h3> |
| 222 | + <p className="text-charcoal-light">Absolutely. I'll show you my portfolio during our call. I'm also happy to share references from past clients.</p> |
| 223 | + </div> |
| 224 | + |
| 225 | + <div className="bg-white rounded-2xl p-6 shadow-sm"> |
| 226 | + <h3 className="font-semibold text-lg mb-3">What if I just need advice?</h3> |
| 227 | + <p className="text-charcoal-light">The first call is free. If you just need 20 minutes of guidance, that's totally fine. If you need more, we can do a paid consultation or ongoing support.</p> |
| 228 | + </div> |
| 229 | + |
| 230 | + <div className="bg-white rounded-2xl p-6 shadow-sm"> |
| 231 | + <h3 className="font-semibold text-lg mb-3">What happens if something goes wrong?</h3> |
| 232 | + <p className="text-charcoal-light">I stand behind my work. If there's a bug or something breaks within 30 days of delivery, I'll fix it for free. No questions asked.</p> |
| 233 | + </div> |
| 234 | + </div> |
| 235 | + </div> |
| 236 | + </section> |
| 237 | + |
| 238 | + {/* CTA */} |
| 239 | + <CTA |
| 240 | + headline="Ready to get a specific quote for your project?" |
| 241 | + subheadline="Book a free 20-minute call and I'll give you an honest assessment of what your project would cost and how long it would take." |
| 242 | + /> |
| 243 | + </> |
| 244 | + ) |
| 245 | +} |
0 commit comments