const HomePage = ({ navigate }) => { const marqueeItems = ['75+ GMC Approvals', '100% Success Rate', '4.6/5 on Trustpilot', '€2.4M+ Revenue Generated', '21 Five-Star Reviews', '5-10 Day Approval', 'No Cure, No Pay Guarantee', '24/7 WhatsApp Support']; // Core services (mirrors Pricing page order and copy) const gmcPlans = [ { icon: 'eye', name: 'Monthly Upkeep', price: '€250', period: '/month', desc: 'Full peace of mind. Your GMC and webshop stay compliant, without you having to lift a finger.', features: ['Preventive policy risk checks','Immediate action on suspension threats','Realtime support & weekly reports','Future-proof optimisation advice','No approval fee on a misrep','Free new merchant if permanently suspended'], cta: 'Start Monthly Upkeep', highlight: false }, { icon: 'check', name: 'GMC Approval', price: '€949', period: 'one-time', desc: 'Complete setup and guaranteed approval in 5-10 business days. No cure, no pay.', features: ['Full compliance audit','Policy violation fixes','Product feed setup','Website compliance review','Submission & follow-up','30-day post-approval monitoring'], cta: 'Get Approved', highlight: true, badge: 'Most Popular' }, { icon: 'refresh', name: 'Suspension Recovery', price: '€1,250', period: 'one-time', desc: 'Full reinstatement for any suspension type. No cure, no pay guarantee.', features: ['Suspension cause analysis','Full compliance overhaul','Appeal preparation','Google liaison support','Reinstatement tracking','30-day post-recovery monitoring'], cta: 'Recover My GMC', highlight: false }, ]; const exclusivePlans = [ { icon: 'lock', name: 'Insider Service', price: 'On request', desc: 'Exclusive high-end service for persistent misrepresentation cases. For stores where everything else has failed. 100% success rate, variable pricing.', features: ['For complex misrep cases','100% reinstatement record','Fully bespoke approach','Personal account manager'], page: 'insider', badge: 'Exclusive' }, { icon: 'store', name: 'Pre-Approved GMC Store', price: 'From €2,000', desc: 'Buy a ready-made, pre-approved GMC webshop. Transferred to your name within 2 days, initial misrep already cleared, start advertising immediately.', features: ['Live within 2 days','Transferred to your name','Initial misrep already cleared','Custom builds on request'], page: 'preapproved', badge: 'New' }, ]; return (
{/* Hero */}
100% Success Rate, Guaranteed

Guaranteed
Google Merchant
Center Approval

Get your e-commerce store approved with our proven process. No cure, no pay guarantee. The only GMC service with a 100% success rate.

navigate('contact')}>Get GMC Approved Book Free Call
{[['75+','GMCs Approved'],['100%','Success Rate'],['€2.4M+','Revenue Generated']].map(([v,l], i) => (
0 ? 24 : 0 }}>
{v}
{l}
))}
{/* Why Choose Us - bento */}
100% Success Rate
We have never failed to get a Google Merchant Center approved. Every single account. Our process leaves nothing to chance.
75+
GMCs approved, zero failures
5-10 Day Approval
Fast-track your GMC with our streamlined process. Most clients approved within 5-10 business days.
Expert Knowledge
Deep knowledge of Google's policies, built from years of handling every type of account and violation.
24/7 WhatsApp Support
Direct access around the clock. No tickets, no queues, just fast answers when you need them.
Suspension Recovery
Even misrepresentation. One client suspended Thursday, live Friday. 100% reinstatement rate.
Complete End-to-End Service
From initial audit to approval to ongoing monitoring. Feed setup, website compliance, policy pages, submission and post-approval checks. Nothing left to chance.
navigate('gmc')}>View Full Service
{/* Core GMC Services — identical structure to pricing page */}
{gmcPlans.map(p => (
{p.badge &&
{p.badge}
}
{p.name}
{p.desc}
{p.price}{p.period}
{p.features.map(f => (
{f}
))}
navigate('contact')} style={{ width: '100%', justifyContent: 'center' }}>{p.cta} →
))}
No Cure, No Pay on all GMC services. Not approved? No cost.
{/* Exclusive services */}
{exclusivePlans.map(p => (
{p.badge &&
{p.badge}
}
{p.name}
{p.desc}
{p.price}
{p.features.map(f => (
{f}
))}
navigate(p.page)} style={{ flex: 1, justifyContent: 'center' }}>Learn More →
))}
{/* Google Shopping dark teaser */}
Google Shopping Ads

Scale further with profit-first Google Shopping

Already approved? Take it to the next level. We run your Shopping campaigns with one rule: only scale when it's profitable. Just 10% of your ad spend.

{['Profit-first model, we only win when you win','10% of ad spend, fully transparent','Full campaign setup including CRO consultancy','Built on real dropshipping and e-commerce experience'].map(item => (
{item}
))}
navigate('shopping')}>View Google Shopping WhatsApp
{/* Testimonials */}
Client Reviews

What our clients say

★★★★★
Trustpilot
21 reviews · 4.6/5
navigate('cases')}>View all results
); }; Object.assign(window, { HomePage });